Skip to content

Instantly share code, notes, and snippets.

@bitraid
Last active November 26, 2022 18:41
Show Gist options
  • Save bitraid/d1901de54382532a03b9b22a207f0417 to your computer and use it in GitHub Desktop.
Save bitraid/d1901de54382532a03b9b22a207f0417 to your computer and use it in GitHub Desktop.
greasemonkey reddit to teddit
// ==UserScript==
// @name reddit to teddit
// @namespace https://gist.github.com/bitraid/d1901de54382532a03b9b22a207f0417
// @version 1.0
// @description reddit to teddit
// @match *://*.reddit.com/*
// @match *://reddit.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
top.location.hostname = "teddit.net";
})();
@sanderfoobar
Copy link

sanderfoobar commented Dec 17, 2021

Thanks! Here is one from twitter to nitter.

// ==UserScript==
// @name         twitter to nitter
// @namespace    https://gist.github.com/bitraid/d1901de54382532a03b9b22a207f0417
// @version      1.0
// @description  twitter to nitter
// @match        *://twitter.com/*
// @match        *://mobile.twitter.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function () {
	'use strict';
	top.location.hostname = "nitter.net";
})();

@joakim
Copy link

joakim commented Nov 26, 2022

And one from youtube to yewtu.be.

// ==UserScript==
// @name         youtube to yewtube
// @namespace    https://gist.github.com/bitraid/d1901de54382532a03b9b22a207f0417
// @version      1.0
// @description  youtube to yewtube
// @match        *://youtube.com/*
// @match        *://*.youtube.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function () {
	'use strict';
	top.location.hostname = "yewtu.be";
})();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment