在chrome扩展中使用来自内容脚本的网站jQuery

时间:2018-04-09 18:39:08

标签: javascript jquery google-chrome google-chrome-extension

我的chrome扩展程序的内容脚本通过清单只在我的目标站点上执行。目标站点使用jQuery,因此它可用。

但在我的内容脚本中,它不可用。 我无法看到页面中的其他所有内容。 我当然可以单独为扩展加载jQuery,但这看起来很浪费。有没有办法访问它?

我的清单中的内容脚本部分如下所示:

"content_scripts": [
  {
    "matches": ["*://*/*/relevant-path*"],
    "js": ["extension.js"],
    "run_at": "document_end"
  }
]

在extension.js中,我添加了一个这样的加载事件处理程序:

window.addEventListener("load", init, false);

在init中我尝试使用失败的jQuery。

0 个答案:

没有答案