summaryrefslogtreecommitdiffstats
path: root/.config/qutebrowser/greasemonkey/google.js
blob: 44acf47089c401f268d8e5505a32521d296ad089 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// ==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;
    }
`)
remember that computers suck.