我相信这可能是问题所在:
"content_scripts" : [
{
"matches" : [
"http://195.88.55.16"
],
"js" : ["script.js"],
"run_at" : "document_idle",
"all_frames" : false
}
答案 0 :(得分:1)
您需要在matches
部分的主机上附加斜杠(可能是斜线+星号),以使模式有效。
"matches" : [
"http://195.88.55.16/*"
],
有关详细信息,请查看match patterns的文档:
以下是基本语法:
<url-pattern> := <scheme>://<host><path> <scheme> := '*' | 'http' | 'https' | 'file' | 'ftp' | 'chrome-extension' <host> := '*' | '*.' <any char except '/' and '*'>+ <path> := '/' <any chars>