Greasy Fork is available in English.
Hides the ads section above results.
当前为
// ==UserScript==
// @name Startpage.com - Hide Ads
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Hides the ads section above results.
// @author Ben Chatelain
// @match https://*.startpage.com/*/search*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict'
// Hide the adBlock div
const matches = document.querySelectorAll( 'div#adBlock, div#gcsa-top' )
for (var container in matches) {
container.display = 'none'
}
})();