初始化

This commit is contained in:
2021-04-26 18:42:12 +08:00
commit a7f0eabbc7
13 changed files with 243 additions and 0 deletions

16
background/worker.js Normal file
View File

@@ -0,0 +1,16 @@
console.log("background");
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
console.log(request, sender)
sendResponse({});
});