equin0x80 Asked: 2019-11-11 09:06:14 +0800 CST2019-11-11 09:06:14 +0800 CST 2019-11-11 09:06:14 +0800 CST 如何查看 Chrome 历史记录中的完整 URL? 772 我在 Windows 10 上使用 Chrome 78.0.3904.97。 有一个“历史”菜单选项列出了以前访问过的页面。它显示页面标题和域名,但不显示完整的 URL。 如何查看完整的 URL,而无需实际单击访问每个页面? google-chrome history 2 个回答 Voted Best Answer nwewbie 2019-11-12T10:41:53+08:002019-11-12T10:41:53+08:00 如果您按Ctrl + HChrome 将打开一个选项卡,其中包含网页标题和网站的主要 URL 如果您右键单击您感兴趣的链接会弹出一个块,您会发现Copy link adress然后只需将其粘贴到记事本或其他任何地方,然后您将获得完整的 URL CalvinDale 2022-08-11T19:21:37+08:002022-08-11T19:21:37+08:00 这适用于 Chrome 桌面版 104.0.5112.81(官方版本)(64 位): [...document.querySelector("#history-app").shadowRoot.querySelector("#history").shadowRoot.querySelectorAll("history-item").entries()] .map(_ => _[1].shadowRoot.querySelector("#link>div").style['background-image']) .map(_ => decodeURIComponent(_.match(/page_url=(?<url>[^;]+?)&allow_google_server_fallback/).groups.url)) //.filter(_ => _.startsWith('https://SomeDomain.com/PathOfInterest')) .forEach(_ => console.log(_))
如果您按
Ctrl + H
Chrome 将打开一个选项卡,其中包含网页标题和网站的主要 URL 如果您右键单击您感兴趣的链接会弹出一个块,您会发现Copy link adress
然后只需将其粘贴到记事本或其他任何地方,然后您将获得完整的 URL这适用于 Chrome 桌面版 104.0.5112.81(官方版本)(64 位):