经过一番研究,我想出的代码是这样的:
var outUrl;
// first get the windowid
chrome.windows.getCurrent(function(window) {
// then get the current active tab in that window
chrome.tabs.query({
active: true,
windowId: window.id
}, function (tabs) {
var tab = tabs[0];
document.write(tab.url)
});
});
这是从我的弹出 html 文件调用的 javascript 文件中。但是,它不显示当前网站的 URL,而是什么也不显示。
我在这个网站和其他网站上找到了多篇关于此的帖子,但我无法实施任何假设的解决方案。
任何帮助将不胜感激。