I am writing chrome extension which requires to get last 10 user's searches from history. It seems this is saved in sqlite3 file 'History' in the user's profile directory. However the format of the table keyword_search_terms is not obvious. And I do not know how to get chrome's profile directory from extension's code. On Linux the directory is at '~/.config/chromium/Default' but I have no idea about what it will be in different environments.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
you don't need to read a local file, you can use chrome.history api a basic example,
Don't forget to declare "history" permission in EDIT: Yes this is for only last 10 URLS. API doesn't provide that functionality. If you want to know where History file is located,
But I don't know how you will read data from an external file. |
||||