修改Google搜索结果高亮显示效果

最近不知道什么原因,登陆Google账号后,搜索结果显示全部为蓝色加粗,再也看不到红色结果了,退出登录后清空cookie,搜索结果关键词红色高亮恢复。网上也有一些其他人遇到这种情况,但是没有好的解决办法,总不能一直不登陆Google吧。

网上有一种解决方案,使用Tampermonkey来修改页面CSS,Chrome下面可以使用,Firefox应该有类似的解决方案。

新建脚本:

// @match      https://*.google.com/*  
// ==/UserScript==  
var head, style;  
head = document.getElementsByTagName('head')[0];  
if (!head) { return; }  
style = document.createElement('style');  
style.type = 'text/css';  
style.innerHTML = 'em{color: #dd4b39;font-weight:normal;}';  
head.appendChild(style);

搜索关键词红色高亮又回来了!

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注