2
我正在建立我的Chrome擴展,我有一個奇怪的問題。這是劇本,我在後臺運行頁:鉻擴展讀取值問題
function getOpenedTabs() {
var openedTabs = [];
chrome.windows.getAll({}, function(wins) {
for (var w in wins) {
if (wins[w].id !== undefined) {
chrome.tabs.getAllInWindow(wins[w].id, function(tabs) {
for (var t in tabs) {
if (tabs[t].id !== undefined) {
openedTabs.push(tabs[t]);
}
}
});
}
}
});
return openedTabs;
}
chrome.tabs.onCreated.addListener(function(tab){
var openedTabs = getOpenedTabs();
var length = openedTabs.length;
console.log("Quantity of tabs: " + length);
if (length > 20) {
openedTabs.sort(function(a,b){return a.visitCount - b.visitCount});
var t = openedTabs.shift();
chrome.tabs.remove(t.id);
console.log("The extension closed the " + t.title + " tab");
}
});
在調試模式openedTabs.length
返回正確的值。但是,當我刪除所有斷點,然後openedTabs.length
所有時間返回零。
可能是什麼樣的問題? 謝謝。
不錯的答案,謝謝 – megas