我正在尝试根据xhr调用的输出更改页面的内容。我从content.js发送一条消息,在背景js文件中进行xrh调用,然后将输出传递给content.js,这会改变页面的内容。
从我的content.js
文件中我正在执行以下操作。
var s = document.createElement('script');
s.src = chrome.extension.getURL('src/content/main.js');
(document.head || document.documentElement).appendChild(s);
在main.js
我正在做的事情
chrome.runtime.sendMessage({
method: 'GET',
action: 'xhttp',
url: myurl
}, function(responseText) {
console.log("Response Text is ", responseText);
});
在我的bg.js
我有以下
chrome.runtime.onMessage.addListener(function(request, sender, callback) {
if (request.action == "xhttp") {
var xhttp = new XMLHttpRequest();
var method = request.method ? request.method.toUpperCase() : 'GET';
xhttp.onload = function() {
callback(xhttp.responseText);
};
xhttp.onerror = function() {
// Do whatever you want on error. Don't forget to invoke the
// callback to clean up the communication port.
callback('Error');
};
xhttp.open(method, request.url, true);
if (method == 'POST') {
xhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
}
xhttp.send(request.data);
return true; // prevents the callback from being called too early on return
}
});
我遇到的问题是我不断收到Invalid arguments to connect.
函数的错误chrome.runtime.sendMessage
。
我不确定我错过了什么。非常感谢任何帮助我们。
答案 0 :(得分:6)
您一直在尝试使用<script>
标记将内容脚本注入页面。
执行此操作时,您的脚本将不再是内容脚本:它会在页面上下文中执行,并且会失去对Chrome API的所有提升访问权限,包括sendMessage
。
您应该阅读关于页面级脚本的isolated world concept和this question。
要使用jQuery,您不应该依赖页面提供的副本 - 它在另一个上下文中,因此无法使用。您需要在文件中包含jQuery的本地副本并在脚本之前加载它:
如果您正在使用清单注入脚本,则可以在脚本之前将
"content_scripts": [
{
matches: ["http://*.example.com/*"],
js: ["jquery.js", "content.js"]
}
],
如果您正在使用程序化注入,请对脚本进行链式加载以确保加载顺序:
chrome.tabs.executeScript(tabId, {file: "jquery.js"}, function() {
chrome.tabs.executeScript(tabId, {file: "content.js"});
});