2021-04-26 18:42:12 +08:00
|
|
|
console.log("background");
|
|
|
|
|
2021-04-30 18:51:42 +08:00
|
|
|
chrome.runtime.onMessage.addListener(function (msg, sender, sendResponse) {
|
|
|
|
console.log(msg, sender)
|
|
|
|
if(msg.name === "boss") { // boss
|
2021-05-08 18:15:29 +08:00
|
|
|
|
|
|
|
// 创建一个tab 然后注入脚本
|
|
|
|
chrome.tabs.create({ url: "https://signup.zhipin.com/" }, function (tab) {
|
|
|
|
chrome.tabs.executeScript(tab.id, { runAt: "document_end", file: "background/boss.js" });
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2021-04-30 18:51:42 +08:00
|
|
|
}
|
2021-04-27 18:36:08 +08:00
|
|
|
// sendResponse({});
|
|
|
|
|
2021-04-26 18:42:12 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|