diff --git a/scripts/background/link.js b/scripts/background/link.js new file mode 100644 index 0000000..3f0bade --- /dev/null +++ b/scripts/background/link.js @@ -0,0 +1,12 @@ +/* link.js +Link the content scripts to the background scripts. +*/ + +class link { + constructor () { + // Create a listener for events. + chrome.runtime.onMessage.addListener(async (message, sender, sendResponse) => { + + }); + } +} \ No newline at end of file