我正在尝试编写一个Chrome扩展程序,以便在标签页的链接包含特定单词/字符串的情况下关闭它们。我的意图是使用matches
中的manifest.json
语句解决此问题。不幸的是,这不起作用。我的manifest.json
看起来像这样:
{
"manifest_version": 2,
"name": "Chrome Extension",
"version": "0.1",
"permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": ["content.js"]
}
],
"background": {
"matches": [
"https://www.google.de/",
"https://sghm.eu/iserv/login"
],
"scripts": ["background.js"],
"persistent": true
}
}
我的background.js
像这样:
chrome.tabs.onUpdated.addListener( function (tabId, changeInfo, tab) {
if (changeInfo.status == 'complete') {
console.log('background running');
chrome.tabs.remove(tabId, function() { });
}
})
我认为我已经明确表示该脚本仅在google
和sghm.eu
上运行,那么为什么它在每个加载的页面上运行?
答案 0 :(得分:2)
问题:
“背景”部分不能包含“匹配项”,就像您在documentation中看到的那样。后台脚本在与标签无关的单独的隐藏后台页面中运行。
在manifest.json中声明的内容脚本可在所有URL上运行。对于您要完成的任务,您根本不需要内容脚本。
解决方案包括几个步骤:
"persistent": false
background.js:
chrome.webNavigation.onCompleted.addListener(closeTab, {
url: [
{urlPrefix: 'https://www.google.de/'},
{urlPrefix: 'https://sghm.eu/iserv/login'},
]
});
function closeTab(e) {
if (!e.frameId) {
chrome.tabs.remove(e.tabId);
}
}