4
如何使用chrome.history API獲取最近訪問過的標籤的URL,特別是訪問的最後10個URL?如何使用Chrome擴展程序中的歷史API獲取瀏覽記錄
如何使用chrome.history API獲取最近訪問過的標籤的URL,特別是訪問的最後10個URL?如何使用Chrome擴展程序中的歷史API獲取瀏覽記錄
將一個空字符串作爲查詢傳遞給search() method of the chrome.history API。例如,這會將最近訪問的10個網址記錄到控制檯:
chrome.history.search({text: '', maxResults: 10}, function(data) {
data.forEach(function(page) {
console.log(page.url);
});
});
可以請您提供代碼.. – checkaayush