13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
|
/* global chrome */
|
||
|
|
||
|
chrome.runtime.onMessage.addListener((message, sender, reply) => {
|
||
|
switch (message) {
|
||
|
case 'getPlatformInfo':
|
||
|
chrome.runtime.getPlatformInfo(reply);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
// Respond asynchronously
|
||
|
return true;
|
||
|
});
|