如何使用 Manifest v3 获取当前标签 URL?
2021-06-15
9801
如何在 MV3 中的后台服务工作线程中获取当前选项卡的 URL?
这是我所拥有的:
let currentURL;
chrome.action.onClicked.addListener(handleBrowserActionClicked);
chrome.commands.onCommand.addListener(function(command) {
console.log("Command:", command);
handleBrowserActionClicked();
});
function handleBrowserActionClicked() {
togglePlugin();
}
function togglePlugin() {
console.log("toggle plugin");
chrome.tabs.query({ active: true, currentWindow: true }, function(tabs) {
chrome.tabs.sendMessage(tabs[0].id, { greeting: "activateFeedback" });
});
}
// Fires when the active tab in a window changes.
chrome.tabs.onActivated.addListener(function () {
console.log("TAB CHANGED")
//firstTimeRunning = true
//feedbackActivated = false
currentURL = getTab()
.then(console.log("Current URL: " + currentURL))
})
// Fired when a tab is updated.
chrome.tabs.onUpdated.addListener(function () {
console.log("TAB UPDATED")
currentURL = getTab() // line 32
.then(console.log("Current URL: " + currentURL))
})
async function getTab() {
let queryOptions = { active: true, currentWindow: true };
let [tab] = await chrome.tabs.query(chrome.tabs[0].url); // line 38
return tab;
}
现在,服务工作线程正在记录“当前 URL:[object Promise]”,而不是例如“https://www.google.com”
它还在控制台中给出错误(请参阅上面的注释以了解行号)
background.js:38 Uncaught (in promise) TypeError: Cannot read property 'url' of undefined
at getTab (background.js:38)
at background.js:32
我认为这可能与我对承诺的了解有限有关!
请帮忙。 提前谢谢您。
3个回答
您的函数
getTab
似乎不正确,您当前正尝试查询 url。而不是查询选项。以下函数应该可以工作。
async function getTab() {
let queryOptions = { active: true, currentWindow: true };
let tabs = await chrome.tabs.query(queryOptions);
return tabs[0].url;
}
还要确保您具有
tabs
权限。
在侦听器中,您也没有使用正确的 async/promise 方法,两个示例使用了
Promise.then
和
await
。
Promise.then
:
chrome.tabs.onUpdated.addListener(function () {
console.log("TAB UPDATED")
getTab().then(url => {
console.log(url);
})
})
await
:
chrome.tabs.onUpdated.addListener(async function () {
console.log("TAB UPDATED")
let url = await getTab()
console.log(url)
})
对于“错误:现在无法查询选项卡(用户可能正在拖动选项卡)。”错误你可以看看 这个答案 ,它建议在查询标签网址之前稍作延迟。
Under_Koen
2021-06-15
const tab = (await chrome.tabs.query({ active: true }))[0]
vdegenne
2022-03-10
只需使用“ activetab ” subtest.json
添加
activetab
在您的清单中。 /p>
340609096
和in background.js
390547473
我确定它会帮助您获取当前的标签URL。 有用的链接 - activetab
Priyadarshan
2022-03-23