这是我的manifest.json
:
{
"name": "arbitrary",
"version": "1.0",
"description": "arbitrary",
"content_scripts": [
{
"matches": ["http://*.gmail.com/*", "https://*.gmail.com/*"],
"js": ["contentScript.js"]
}
],
"manifest_version": 2
}
这是我的内容脚本contentScript.js
:
alert("hello!");
console.log("hi there");
我已经加载了解压后的扩展名,但是当我打开gmail标签时,代码无法运行。没有警报,也没有控制台消息。
我想念什么?
答案 0 :(得分:0)
Gmail.com
基本上是真实域mail.google.com
的虚荣URL。我必须相应地更改manifest.json
中匹配的URL。