summaryrefslogtreecommitdiff
path: root/.config/qutebrowser/greasemonkey/dumb.js
diff options
context:
space:
mode:
authorAdam Stück <adam@adast.xyz>2023-03-11 16:22:21 +0100
committerAdam Stück <adam@adast.xyz>2023-03-11 16:22:21 +0100
commitaa14ee0d1bf0c8f701e567558fcc0cd5fbfe0c95 (patch)
tree24c5098dfda02239aada4ca02742c34a8ea3ff8c /.config/qutebrowser/greasemonkey/dumb.js
parente9b9610421073fc8b7a93c2083bfd4af3d9b3208 (diff)
qutebrowser: added userscripts
Includes DarkReader (unofficial) and a few redirects to minimal, private front-ends.
Diffstat (limited to '.config/qutebrowser/greasemonkey/dumb.js')
-rw-r--r--.config/qutebrowser/greasemonkey/dumb.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/qutebrowser/greasemonkey/dumb.js b/.config/qutebrowser/greasemonkey/dumb.js
new file mode 100644
index 0000000..18507ea
--- /dev/null
+++ b/.config/qutebrowser/greasemonkey/dumb.js
@@ -0,0 +1,19 @@
+// ==UserScript==
+// @name Dumb
+// @version 1.0
+// @description genius to dumb
+// @match *://genius.com/*
+// @match *://*.genius.com/*
+// @grant none
+// @run-at document-start
+// ==/UserScript==
+
+(function () {
+ 'use strict';
+
+ var instances = [
+ "sing.whatever.social",
+ ];
+
+ top.location.hostname = instances[Math.floor(Math.random()*instances.length)];
+})();