1

我正在開發一個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(); 
     }); 
    } 
}); 

回答

0

可能說謊的問題s清單權限。

新標籤頁不使用http://,但使用chrome://newtab,因此您可能需要將其添加到您的擴展才能使用的權限中。

+0

我試了一下,說:''許可 '鉻:// NEWTAB' 未知或URL模式是malformed.''還,我嘗試了所有可能的方式,例如''*:// *','chrome:// *','chrome:// * /','等等。 – moustacheman

+0

你可以試試'*'嗎? –

+0

相同警告'權限'*'未知或URL模式格式錯誤.'! – moustacheman

1

嘗試將下面的代碼添加到您的manifest.json中。

"chrome_url_overrides": { 
    "newtab": "blank.html" 
} 

blank.html:(創建您自己的版本)

<html> 
<head> 
    <title>Blank New Tab</title> 
    <style> 
    div { 
    color: #cccccc; 
    vertical-align: 50%; 
    text-align: center; 
    font-family: sans-serif; 
    font-size: 300%; 
    } 
    </style> 
</head> 
<body> 
    <div style="height:40%"></div> 
    <div>Blank New Tab&trade;</div> 
</body> 
</html> 
+0

這無助於通過background.js注入腳本,我認爲,我們無法通過瀏覽器操作覆蓋新的標籤頁。非常感謝你的建議,這真的很有幫助。 – moustacheman

+0

http://stackoverflow.com/questions/4996194/chrome-tabs-executescript-not-working?answertab=votes#tab-top'請記住,內容腳本不會注入任何'chrome://'或擴展名畫廊頁面「。 – moustacheman

相關問題