From aa14ee0d1bf0c8f701e567558fcc0cd5fbfe0c95 Mon Sep 17 00:00:00 2001 From: Adam Stück Date: Sat, 11 Mar 2023 16:22:21 +0100 Subject: qutebrowser: added userscripts Includes DarkReader (unofficial) and a few redirects to minimal, private front-ends. --- .config/qutebrowser/greasemonkey/dumb.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .config/qutebrowser/greasemonkey/dumb.js (limited to '.config/qutebrowser/greasemonkey/dumb.js') 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)]; +})(); -- cgit v1.2.3-70-g09d2