gpt4 book ai didi

javascript - 使用javascript读取谷歌搜索历史记录

转载 作者:太空宇宙 更新时间:2023-11-04 16:00:07 24 4
gpt4 key购买 nike

我不知道这是否可能。

我想制作一个网络应用程序,它将根据用户进行的 Google 搜索生成内容。我正在使用 Google+ 登录我的 Web 应用程序。我知道谷歌保存了用户所做的搜索。有什么方法可以使用 javascript 获取它们吗?

最佳答案

这可以帮助你.. http://www.dicabrio.com/javascript/steal-history.php

如果您想使用 chrome.history API 访问最近访问过的选项卡的 URL:将空字符串作为查询传递给 chrome.history API 的 search() 方法。例如,这会将最近访问的 URL 记录到控制台:

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

关于javascript - 使用javascript读取谷歌搜索历史记录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42336242/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com