gpt4 book ai didi

google-chrome-extension - 在 chrome 扩展中更改代码后 gulp 刷新事件选项卡

转载 作者:行者123 更新时间:2023-12-04 21:11:04 25 4
gpt4 key购买 nike

我正在开发一个 chrome 扩展,我想在代码更改后自动刷新事件选项卡
我得到了gulp-open工作,所以我不再需要导航到 chrome://extensions 并手动单击“重新加载”
现在只保留事件选项卡刷新
我试过gulp-livereload但无法让它用于开发 chrome 扩展
任何想法如何解决这个问题?

最佳答案

您可以发布您的 chrome 扩展程序的代码吗?没有太多信息,我希望这会有所帮助。您可以在重新加载 chrome 扩展程序后注入(inject)以下代码以刷新页面:

chrome.tabs.query({
active: true, // Select active tabs
lastFocusedWindow: true // In the current window
}, function(tabs) {
// Since there can only be one active tab in one active window,
// the array has only one element
var tab = tabs[0];
// Javascript to reload the page
var code = 'window.location.reload();';
// Execute the code for the current tab
chrome.tabs.executeScript(tab.id, {code: code});
});

关于google-chrome-extension - 在 chrome 扩展中更改代码后 gulp 刷新事件选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34325055/

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