14 lines
No EOL
332 B
JavaScript
14 lines
No EOL
332 B
JavaScript
/* link.js
|
|
Link the content scripts to the background scripts.
|
|
*/
|
|
|
|
class BackgroundMessaging {
|
|
constructor () {
|
|
// Create a listener for events.
|
|
/* chrome.runtime.onMessage.addListener(async (message, sender, sendResponse) => {
|
|
|
|
});*/
|
|
}
|
|
}
|
|
|
|
export default BackgroundMessaging; |