summaryrefslogtreecommitdiffstats
path: root/.config/qutebrowser/greasemonkey/google.js
blob: b410eff0da8203121ef3fccb6e61ddf0f326cb8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ==UserScript==
// @name         custom google
// @match        https://www.google.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    document.querySelectorAll('.ads-ad').forEach(function(e){
        e.remove();
    });
})();
remember that computers suck.