Greasy Fork

Greasy Fork is available in English.

Twitter to Nitter Redirector

Redirect twitter to nitter, a free and open source alternative

当前为 2022-08-22 提交的版本,查看 最新版本

// ==UserScript==
// @name         Twitter to Nitter Redirector
// @namespace    https://codeberg.org/shmup/junk-trove
// @version      1.0
// @description  Redirect twitter to nitter, a free and open source alternative
// @author       shmup
// @match        https://www.twitter.com/*
// @match        https://twitter.com/*
// @match        https://mobile.twitter.com/*
// @grant        none
// @run-at       document-start
// @license      Unlicense
// ==/UserScript==

/**
 * Nitter is a free and open source alternative Twitter front-end focused on privacy and performance.
 * The source is available on GitHub at https://github.com/zedeus/nitter
 **/

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