在这样的代码的 safari 扩展中是否有任何等价物:
chrome.tabs.getSelected(null,function(tab) {
chrome.tabs.reload(tab.id);
});
This code comes from Chrome.
我想把这段代码放到 global.html 中。我想在扩展安装后立即重新加载页面。
在这样的代码的 safari 扩展中是否有任何等价物:
chrome.tabs.getSelected(null,function(tab) {
chrome.tabs.reload(tab.id);
});
This code comes from Chrome.
我想把这段代码放到 global.html 中。我想在扩展安装后立即重新加载页面。