Startpage.com - Hide Ads

Hides the !

Från och med 2021-04-28. Se den senaste versionen.

// ==UserScript==
// @name         Startpage.com - Hide Ads
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Hides the !
// @author       Ben Chatelain
// @match        https://www.startpage.com/do/search
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict'

    // Hide the adBlock div
    var ads = document.querySelectorAll( 'div#adBlock' )
    ads.display = 'none'
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。