我正在尝试制作带有内容脚本的 Chrome 扩展程序,仅匹配 Google-Images 搜索结果页面。
它们(据我所知)&tbm=isch
在 URL 参数中被标识。但是,匹配模式似乎只在路径上起作用。我该怎么做呢?
问问题
3038 次
1 回答
6
有两种方法:
(1)您可以使用manifest 中的include_globs
属性。像这样的东西应该工作:
{
"content_scripts": [ {
"exclude_globs": [ ],
"include_globs": [ "https://www.google.com/search*tbm=isch*" ],
"js": [ "YOUR_SCRIPT.user.js" ],
"matches": [ "https://www.google.com/search*"
]
} ],
... ...
(2) 您可以在内容脚本的顶部放置这样的测试:
if ( ! /\btbm=isch\b/i.test (location.search) ) {
return;
}
前者可能更有效,但可能更难调整。
您也可以使用这些方法的组合。
于 2012-11-25T02:45:50.203 回答