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.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/.config/qutebrowser/greasemonkey/google.js b/.config/qutebrowser/greasemonkey/google.js
new file mode 100755
index 0000000..44acf47
--- /dev/null
+++ b/.config/qutebrowser/greasemonkey/google.js
@@ -0,0 +1,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.