红联Linux门户
Linux帮助

Chrome批量删除指定站点历史记录

发布时间:2016-12-20 11:29:53来源:linux网站作者:felcon
Chrome地址栏的输入联想会从访问历史里搜索,有时候个别站点已经不再使用,却仍在历史记录里影响地址栏的输入联想。
 
如果要清理某个站点,在Chrome的历史记录(chrome://history/)中可以对其进行搜索,但是删除时发现Chrome居然没有提供全选的功能。那就自己写一个吧。
 
打开Chrome开发者工具,在Elements中选择<iframe name="history"……,然后在Console中输入代码:
for(let x of document.getElementsByClassName('entry')) { x.childNodes[0].childNodes[0].childNodes[0].setAttribute('checked', true); }
 
回车,即可选中所有的单选框,然后点击“移除所选项”即可。如果“移除所选项”是灰色的,取消选中一个然后再次选中就可以了。
 
方法适用Linux下的Chrome浏览器。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/27073.html