我已经编写了用于编写Google chrome扩展程序的代码,但是问题是我无法在chrome控制台中执行内容脚本。
这是我的以下代码

对于清单文件:-

    {
      "manifest_version": 2,

      "name": "My new extension",
      "description": "It does stuff",
      "version": "1"
      "content_scripts": [
    {
       "matches": ["<all_urls>"],
       "js": ["content.js"]
     }
   ]
 }


对于我的内容脚本:

     console.log("Hello world!");


当我部署扩展程序时,它会被正确接受。它应该在chrome控制台上打印,但是当我刷新时,什么也没打印。
谁能帮助我哪里做错了?
提前致谢。

最佳答案

为了注入内容脚本,您需要在清单中至少添加以下权限:

"permissions": ["activeTab"]


检查documentation

关于javascript - 无法在Chrome扩展程序中运行内容脚本,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51389516/

10-11 00:45