NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Bing.com Search Results Cleanup // @version 0.1 // @description This script is intended to gradually clean up the eyesore that is bing.com's search results page by simply overwriting the page's CSS via Global-Styles. // @match https://www.bing.com/* // @copyright 2014+, DreamPhreak (http://dreamphreak.com) // @oujs:author DreamPhreak // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle('#b_results>li a { text-decoration: none !important; padding-bottom: 0px !important; margin-bottom: 0px !important; }'); addGlobalStyle('.b_caption { font-size: 12px !important; }'); addGlobalStyle('.b_scopebar { top: 45px !important; }'); addGlobalStyle('#id_h { top: 0px !important; }'); addGlobalStyle('#b_header { height: 95px !important; }'); addGlobalStyle('.sb_count { display: none !important; }'); addGlobalStyle('#b_tween { margin-top: -72px !important; margin-left: -120px !important; }'); addGlobalStyle('.b_searchboxForm .b_searchboxSubmit { background-color: #ddd !important; border-color: #ddd !important; }'); addGlobalStyle('.b_footer { display: none !important; }') // addGlobalStyle(' { }');