gpt4 book ai didi

tabs - Chrome扩展程序:在Tabs文档中不存在此 “chrome.tabs.getSelected”,但我在示例中看到了动画

转载 作者:行者123 更新时间:2023-12-02 06:21:07 27 4
gpt4 key购买 nike

作为标题,我无法在Api-> Tabs中找到此方法...
方式和地点?
谢谢'

最佳答案

那是deprecated in Chrome 16。正确的方法是将 chrome.tabs.query active:truelastFocusedWindow:true一起使用。

// Get the current active tab in the lastly focused window
chrome.tabs.query({
active: true,
lastFocusedWindow: true
}, function(tabs) {
// and use that tab to fill in out title and url
var tab = tabs[0];
run({
url: tab.url,
description: tab.title
});
});

关于tabs - Chrome扩展程序:在Tabs文档中不存在此 “chrome.tabs.getSelected”,但我在示例中看到了动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9444926/

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