我正在開發一個Chrome擴展程序,除了在新標籤頁中,它在所有場景中都很好用。Chrome擴展程序 - 不在新打開的選項卡中工作
即,該擴展只在網站打開時才起作用,例如, stackoverflow.com。當我按Ctrl + t並點擊我的擴展圖標時,它不起作用。
我做錯了什麼?或者它是瀏覽器的行爲?
我已經添加了我的代碼供您參考。
清單
{
"manifest_version": 2,
"background": {
"scripts": ["scripts/background.js"],
"persistent": false
},
"content_scripts":[{
"matches" : ["<all_urls>"],
"js": ["scripts/jquery-2.1.0-min.js", "scripts/init.js"],
"run_at": "document_end"
}],
"permissions": [
"storage", "activeTab", "http://*/*", "https://*/*"
],
"browser_action": {
"default_icon": "images/plugin-icon-24.png"
},
"web_accessible_resources": [
"*.html",
"images/*.gif",
"images/*.png"
]
}
init.js
chrome.storage.sync.get('logged_in', function(status){
if(status.logged_in){
chrome.runtime.sendMessage('LOGGED_IN');
} else {
chrome.runtime.sendMessage('NOT_LOGGED_IN');
}
});
background.js
var add_resource = function(){
chrome.tabs.executeScript({
file: 'scripts/plugin.js'
});
chrome.tabs.insertCSS({
file: 'styles/plugin.css'
});
};
chrome.runtime.onMessage.addListener(function(message){
alert(message);
/*This alerts comes even in the newly opened tab.
But the script is not getting executed.*/
if(message == 'LOGGED_IN'){
add_resource();
} else {
chrome.browserAction.onClicked.addListener(function(tab){
add_resource();
});
}
});
我試了一下,說:''許可 '鉻:// NEWTAB' 未知或URL模式是malformed.''還,我嘗試了所有可能的方式,例如''*:// *','chrome:// *','chrome:// * /','等等。 – moustacheman
你可以試試'*'嗎? –
相同警告'權限'*'未知或URL模式格式錯誤.'! – moustacheman