summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Stück <adam@adast.xyz>2023-05-18 23:38:47 +0200
committerAdam Stück <adam@adast.xyz>2023-05-18 23:38:47 +0200
commitc07ed9800f08a3851ed6830d54c7135764f9857f (patch)
treec548a800ba30035483cc030d9ece0497c82a19be
parentc2a4bb1be810551bc2fbc4103e5534fad398debb (diff)
qutebrowser: update teddit redirect script
-rw-r--r--.config/qutebrowser/greasemonkey-available/teddit.js11
1 files changed, 2 insertions, 9 deletions
diff --git a/.config/qutebrowser/greasemonkey-available/teddit.js b/.config/qutebrowser/greasemonkey-available/teddit.js
index d0466d8..2a4bcf8 100644
--- a/.config/qutebrowser/greasemonkey-available/teddit.js
+++ b/.config/qutebrowser/greasemonkey-available/teddit.js
@@ -4,19 +4,12 @@
// @description reddit to teddit
// @match *://reddit.com/*
// @match *://*.reddit.com/*
+// @match *://teddit.net/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
-
- var instances = [
- "teddit.namazso.eu",
- "teddit.totaldarkness.net",
- "teddit.bus-hit.me",
- // "teddit.sethforprivacy.com"
- ];
-
- top.location.hostname = instances[Math.floor(Math.random()*instances.length)];
+ top.location.hostname = "teddit.adminforge.de";
})();