作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以使用chrome扩展程序将远程网页加载到后台页面中?
"background": {
"page": "local.html"
}
"background": {
"page": "http://...."
}
Could not load background page http://....
最佳答案
不,那是不可能的。自Chrome 22以来,可能是-请参阅答案的底部。
您可以whitelist a https:
resource in the manifest file文件,以便可以手动构造背景脚本。如果网络中断,请确保在扩展中包括回退资源:
<!-- ... doctype etc ... (background.html) -->
<script src="https://..../external_bg.js"></script>
<script src="bg.js"></script>
bg.js
可能看起来像:if (!window.namespace_of_external_bg) {
// Fallback, by defining fallback methods or injecting a new script:
document.write('<script src="fallback_bg.js"></script>');
}
eval
的方法,因为CSP也禁止使用这些方法。您可以编写模板,并请求外部值来填充模板。 localStorage
可用于缓存变量。有关缓存外部资源的示例,请参见Chrome extension adding external javascript to current page's html。此答案涉及内容脚本,因此不能使用确切的方法来启用缓存脚本(因为您将需要使用eval
来加载脚本)。但是,仍然可以使用缓存技术。Blob
,然后使用 webkitURL.createObjectURL
创建一个临时URL来加载资源。// Modification of https://stackoverflow.com/a/10371025
// Instead of `chrome.tabs.executeScript`, use
// x.responseText or x.response (eg when using x.responseType='arraybuffer')
var blob = new Blob([x.responseText], {type: 'application/javascript'});
var url = (window.URL || window.webkitURL).createObjectURL(blob);
var s = document.createElement('script');
s.src = url;
document.head.appendChild(s);
Refused to load the script 'blob:chrome-extension%3A//damgmplfpicjkeogacmlgiceidmilllf/96356d24-3680-4188-812e-5661d23e81df' because it violates the following Content Security Policy directive: "script-src 'self' chrome-extension-resource:".
unsafe-eval
CSP策略)在后台页面中加载非https资源。出于安全方面的考虑,显然不推荐使用(例如,因为它容易受到MITM attack的影响)。function loadScript(url) {
var x = new XMLHttpRequest();
x.onload = function() {
eval(x.responseText); // <---- !!!
};
x.open('GET', url);
x.send();
}
// Usage:
loadScript('http://badpractic.es/insecure.js');
unsafe-eval
CSP策略。 permissions
部分的 list 中将URL列入白名单,否则服务器必须启用CORS。 "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["http://badpractic.es/insecure.js"],
"background": {"scripts": ["background.js"] }
关于google-chrome - 在后台页面: Chrome Extension中加载远程网页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11845118/
我是一名优秀的程序员,十分优秀!