Content.js不触发

时间:2019-05-13 03:34:39

标签: google-chrome-extension

我正在尝试超级基本的“ hello world” chrome扩展程序。 我希望内容脚本与浏览器页面进行交互。 没有错误,但没有来自content.js的控制台日志。

我在这里尝试过Google的文档: https://developer.chrome.com/extensions/content_scripts

在这里看过这个家伙: https://www.youtube.com/watch?v=9Tl3OmwrSaM&list=PLRqwX-V7Uu6bL9VOMT65ahNEri9uqLWfS&index=3

manifest.json

{
  "manifest_version": 2,
  "name": "Hello World",
  "version": "1.0",
  "description": "xxxxx",
  "browser_action": {
    "default_icon": "images/icon128.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": ["content.js"]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}

popup.html

<!DOCTYPE html>
<html>
  <head>
    <script src="js/Main.js" type="text/javascript"></script>
    <style>
      button {
        height: 30px;
        width: 300px;
        outline: none;
      }
    </style>
  </head>
  <body>
    <button id="btnTest">TEST</button>
  </body>
</html>

content.js

console.log("CONTENT!");

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

除了鼓励您在每次更新后重新加载扩展程序的注释外,请确保未在扩展程序页面本身(chrome://extensions/)上测试此扩展程序。尝试类似www.google.com的方法。您无法将内容注入chrome://extensions/页面。