hrtools/background/worker.js

21 lines
273 B
JavaScript
Raw Normal View History

2021-04-26 10:42:12 +00:00
console.log("background");
2021-04-30 10:51:42 +00:00
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
console.log(msg, sender)
if(msg.name === "boss") { // boss
chrome.tabs.cre // 创建一个tab 然后注入脚本
}
2021-04-27 10:36:08 +00:00
// sendResponse({});
2021-04-26 10:42:12 +00:00
});