gpt4 book ai didi

javascript - 单击 popup.html(chrome 扩展)后执行脚本

转载 作者:数据小太阳 更新时间:2023-10-29 03:59:59 27 4
gpt4 key购买 nike

当我单击 popup.html 中的按钮时,我试图在页面上执行 javascript。我尝试使用这样的方式:

background.js中:

chrome.tabs.onUpdated.addListener(function(tabId, changeInfo){
if(changeInfo.status == "loading") {
insert(tabId);
}
});
function insert(tabId) {
chrome.tabs.get(tabId, function(tab) {
$('button').click(function() {
chrome.tabs.executeScript(tab.id, {file: 'js/alert.js'});
});
});
}

Alert.js 只包含一个字符串:alert('works');

警报只是一个例子。用户单击 popup.html 中的按钮后,真实脚本应该对打开的选项卡执行一些 DOM 操作。

最佳答案

我根据你的需要写了一个demo。

https://gist.github.com/greatghoul/8120275


警报.js

alert('hello ' + document.location.href);

背景.js

// empty file, but needed

图标.png

icon

list .json

{
"manifest_version": 2,

"name": "Click to execute",
"description": "Execute script after click in popup.html (chrome extension) http://stackoverflow.com/questions/20764517/execute-script-after-click-in-popup-html-chrome-extension.",
"version": "1.0",

"icons": {
"48": "icon.png"
},

"permissions": [
"tabs", "<all_urls>"
],

"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},

"background": {
"scripts": ["background.js"],
"persistent": false
}
}

弹出窗口

<!DOCTYPE html>
<html>
<body style="width: 300px">
Open <a href="http://stackoverflow.com" target="_blank">this page</a> and then
<button id="clickme">click me</button>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>

弹出窗口

// var app = chrome.runtime.getBackgroundPage();

function hello() {
chrome.tabs.executeScript({
file: 'alert.js'
});
}

document.getElementById('clickme').addEventListener('click', hello);

关于javascript - 单击 popup.html(chrome 扩展)后执行脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20764517/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com