Good to know. Thanks.
Good to know. Thanks.
tampermonkey script
// ==UserScript==
// Twitter to Nitter
// http://tampermonkey.net/
// 0.1
// Redirect Twitter links to Nitter in order to avoid the splash screen while scrolling.
// You
// *://*.twitter.com/*
// *://twitter.com/*
// GM.xmlHttpRequest
// reddit.com
// GM_addStyle
// data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==
(function() {
'use strict';
var reg = new RegExp('(.*)://((.*).)?twitter.com/(.*)');
if (reg.test(document.URL))
{
var newURL = 'https://nitter.net'+window.location.pathname;
window.location.href = newURL;
}
})();
tampermonkey script
// ==UserScript==
// @name Twitter to Nitter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Redirect Twitter links to Nitter in order to avoid the splash screen while scrolling.
// @author You
// @match *://*.twitter.com/*
// @match *://twitter.com/*
// @grant GM.xmlHttpRequest
// @connect reddit.com
// @grant GM_addStyle
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==
(function() {
'use strict';
var reg = new RegExp('(.*)://((.*).)?twitter.com/(.*)');
if (reg.test(document.URL))
{
var newURL = 'https://nitter.net'+window.location.pathname;
window.location.href = newURL;
}
})();
(post is archived)