Chrome扩展程序getUrl无法在注入文件中运行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Chrome扩展程序getUrl无法在注入文件中运行相关的知识,希望对你有一定的参考价值。

我正在开发Chrome扩展程序,有没有办法从注入文件中获取chrome.extension.getURL('file path')方法?我无法从注入的文件访问上述方法。

的manifest.json

{
"name": "Name",
"version": "0.1",
"description": "Name chrome extension",
"background": {
"persistent": false,
"scripts": ["js/background.js"]
},
"permissions": [
"tabs", 
"https://*/*"
],
"content_scripts": [
{
  "matches": ["https://mail.google.com/*"],
  "js": ["js/content.js"],
  "run_at": "document_end"
}
],
"web_accessible_resources": [
"js/injected.js",
"html/popup.html"
],
"manifest_version": 2
}

injected.js

console.log("Ok injected file worked");
console.log("Url: ", chrome.extension.getURL('html/popup.html'));

contentScript.js

var s = document.createElement('script');
s.src = chrome.extension.getURL('js/injected.js');
(document.head || document.documentElement).appendChild(s);
答案

不,你不能,一旦你在页面中注入脚本,它就无法访问chrome.extension.getURl。但是你可以在你的injected scriptcontent script之间进行交流。其中一种方法是使用自定义事件。

mainfest.json

{
"name": "Name",
"version": "0.1",
"description": "Name chrome extension",
"background": {
"persistent": false,
"scripts": ["js/background.js"]
},
"permissions": [
"tabs", 
"https://*/*"
],
"content_scripts": [
{
  "matches": ["https://mail.google.com/*"],
  "js": ["js/content.js"],
  "run_at": "document_end"
}
],
"web_accessible_resources": [
"js/injected.js",
"html/popup.html"
],
"manifest_version": 2
}

在你的injected script

console.log("Ok injected file worked");


document.addEventListener('yourCustomEvent', function (e)
{
    var url=e.detail;
    console.log("received "+url);
});

在你的content script

var s = document.createElement('script');
s.src = chrome.extension.getURL('js/injected.js');
(document.head || document.documentElement).appendChild(s);

s.onload = function(){

  var url=chrome.runtime.getURL("html/popup.html");

  var evt=document.createEvent("CustomEvent");
  evt.initCustomEvent("yourCustomEvent", true, true, url);
  document.dispatchEvent(evt);
};
另一答案

您必须在扩展清单的web_accessible_resources中提及file_path或file_names。 例如: "web_accessible_resources":[ "styles/*", "yourfilename.js" ] 之后,您可以通过调用方法将文件放入注入的脚本中。 "chrome.extension.getURL('yourfilename.js')";

另一答案

加入扩展名manifest.json

"web_accessible_resources": ["*.js"]

来自"web_accessible_resources" manual page

然后,这些资源将通过URL chrome-extension:// [PACKAGE ID] / [PATH]在网页中提供,可以使用extension.getURL方法生成。

以上是关于Chrome扩展程序getUrl无法在注入文件中运行的主要内容,如果未能解决你的问题,请参考以下文章

如何使Chrome扩展程序窗口始终位于顶部

chrome扩展开发中contentscript问题求助

从 Chrome 扩展中挂钩 Websocket

删除文件时无法检测 chrome 扩展中的删除事件

IE 扩展 - 注入 Javascript 文件

用 Chrome 扩展程序注入 javascript 应该这么容易吗?