Chrome extension History API

I am writing a chrome extension that needs to analyze the recent browsing history for a particular tab. The chrome.history API allows me to search for items in the global history, but seemingly provides no means to localize the results to a particular tab. Am I missing something, or is this impossible to get?


I think what you are looking is the navigation API. The Chrome history is not related to a particular tab. If you want to use or delete from the history a element of the tab navigation you can use the history search function with the navigation information.

链接地址: http://www.djcxy.com/p/64708.html

上一篇: 是从指针到类型转换为指向安全类型数组的指针?

下一篇: Chrome扩展程序History API