内容脚本无法运行?

时间:2018-08-09 17:46:11

标签: google-chrome-extension

这是我的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标签时,代码无法运行。没有警报,也没有控制台消息。

我想念什么?

1 个答案:

答案 0 :(得分:0)

Gmail.com基本上是真实域mail.google.com的虚荣URL。我必须相应地更改manifest.json中匹配的URL。