chrome.tabs.executeScript()
从运行脚本的每个选项卡/框架中返回一个带有“脚本结果”的数组。
“脚本的结果”是最后评估的语句的值,可以是函数(即IIFE,使用return
语句)返回的值。通常,console.log()
如果您从 Web 控制台 ( F12)执行代码/脚本(例如,对于脚本var foo='my result';foo;
,results
数组将包含字符串“ my result
”作为一个元素)。如果您的代码很短,您可以尝试从控制台执行它。
这是从我的另一个答案中获取的一些示例代码:
chrome.browserAction.onClicked.addListener(function(tab) {
console.log('Injecting content script(s)');
//On Firefox document.body.textContent is probably more appropriate
chrome.tabs.executeScript(tab.id,{
code: 'document.body.innerText;'
//If you had something somewhat more complex you can use an IIFE:
//code: '(function (){return document.body.innerText;})();'
//If your code was complex, you should store it in a
// separate .js file, which you inject with the file: property.
},receiveText);
});
//tabs.executeScript() returns the results of the executed script
// in an array of results, one entry per frame in which the script
// was injected.
function receiveText(resultsArray){
console.log(resultsArray[0]);
}
这将注入内容脚本来获得.innerText
的<body>
点击浏览器的操作按钮时。您将需要获得activeTab
许可。
作为这些生成的示例,您可以打开网页控制台 ( F12) 并输入document.body.innerText;
或(function (){return document.body.innerText;})();
查看将返回的内容。