summaryrefslogtreecommitdiffstats
path: root/.config/qutebrowser/greasemonkey/google.js
diff options
context:
space:
mode:
Diffstat (limited to '.config/qutebrowser/greasemonkey/google.js')
-rwxr-xr-x.config/qutebrowser/greasemonkey/google.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/qutebrowser/greasemonkey/google.js b/.config/qutebrowser/greasemonkey/google.js
new file mode 100755
index 0000000..b410eff
--- /dev/null
+++ b/.config/qutebrowser/greasemonkey/google.js
@@ -0,0 +1,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.