对于 chrome 扩展中的内容脚本,您可以指定matches
并exclude_matches
控制它们被注入的页面。这必须在扩展的清单中指定,如下所示
{
"name": "Color picker",
...
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"exclude_matches": ["http://www.google.com/*"],
"css": ["color_picker.css"],
"js": ["jquery.js", "color_picker.js"]
}
],
...
}
我想知道是否可以添加["http://www.yahoo.com/*"],
到exclude_matches
以及何时使用扩展程序。这样,我可以让用户控制exclude_matches