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