mirror of https://github.com/Flinner/dots.git
feat: reddit->old.reddit, twitter->nitter
This commit is contained in:
parent
43c79b6446
commit
0275bf81ab
|
@ -0,0 +1,11 @@
|
||||||
|
// ==UserScript==
|
||||||
|
// @name reddit to old.reddit redirector
|
||||||
|
// @namespace mamg22's userscripts
|
||||||
|
// @match http://www.reddit.com/*
|
||||||
|
// @match https://www.reddit.com/*
|
||||||
|
// @match http://reddit.com/*
|
||||||
|
// @match https://reddit.com/*
|
||||||
|
// @run-at document-start
|
||||||
|
// ==/UserScript==
|
||||||
|
|
||||||
|
location.href = location.href.replace("www.reddit.com", "old.reddit.com");
|
|
@ -0,0 +1,12 @@
|
||||||
|
// ==UserScript==
|
||||||
|
// @name Twitter to Nitter redirector
|
||||||
|
// @namespace mamg22's userscripts
|
||||||
|
// @match http://twitter.com/*
|
||||||
|
// @match https://twitter.com/*
|
||||||
|
// @match http://www.twitter.com/*
|
||||||
|
// @match https://www.twitter.com/*
|
||||||
|
// @run-at document-start
|
||||||
|
// ==/UserScript==
|
||||||
|
|
||||||
|
location.href=location.href.replace("twitter.com","nitter.kavin.rocks");
|
||||||
|
|
Loading…
Reference in New Issue