尝试匹配谷歌的任何tld。 IE:google.ca,google.com等...但是它只允许整个主机成为通配符。不属于主持人。
这是在extentions manifest.json文件中的" content_scripts":[]内。
这样可行:
"matches" : [ "*://*.google.com/*", "*://*.google.ca/*" ],
但这不是:
"matches" : [ "*://*.google.*/*" ],
这也不是:
"matches" : [ "*://*.google*/*" ],
只是在激活时抛出错误。我真的不想将所有Google TLD作为单独的元素填写。有没有人想过这个?