blob: 40e99b90369c6958963b393cb0e62404f74a18fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// ==UserScript==
// @name 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";
})();
|