// ==UserScript== // @name custom google // @match https://www.google.com/* // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelectorAll('.ads-ad').forEach(function(e){ e.remove(); }); })(); GM_addStyle(` * { // font-size: .98em !important; // font-family: monospace, monospace !important; } `)