回答

18

將一個空字符串作爲查詢傳遞給search() method of the chrome.history API。例如,這會將最近訪問的10個網址記錄到控制檯:

chrome.history.search({text: '', maxResults: 10}, function(data) { 
    data.forEach(function(page) { 
     console.log(page.url); 
    }); 
}); 
+0

可以請您提供代碼.. – checkaayush

相關問題