我不知道这是否可能。
我想制作一个网络应用,根据用户完成的Google搜索生成内容。我正在使用Google+登录功能登录我的网络APp。 我知道谷歌会保存用户完成的搜索。有没有办法用javascript获取它们?
答案 0 :(得分:1)
这可以帮助你...... http://www.dicabrio.com/javascript/steal-history.php
如果您想使用chrome.history API访问最近访问过的标签页的网址: 将一个空字符串作为查询传递给chrome.history API的search()方法。例如,这会将最近访问过的URL记录到控制台:
chrome.history.search({text: '', maxResults: 10}, function(data) {
data.forEach(function(page) {
console.log(page.url);
});
});