// ==UserScript== // @name 去掉百度搜索结果下划线 // @namespace ilikemeat@qq.com // @create 2017-6-30 // @version 0.1 // @description 去掉搜索结果下划线 // @author ilikemeat // @include http://www.baidu.com/* // @include https://www.baidu.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { function addNewStyle(newStyle) { var styleElement = document.getElementById('styles_js'); if (!styleElement) { styleElement = document.createElement('style'); styleElement.type = 'text/css'; styleElement.id = 'styles_js'; document.getElementsByTagName('head')[0].appendChild(styleElement); } styleElement.appendChild(document.createTextNode(newStyle)); } addNewStyle('a{text-decoration:none !important}'); addNewStyle('em{text-decoration:none !important}'); })();