Greasy Fork

Greasy Fork is available in English.

Twitter to Nitter Redirector

Redirect youtube to invidious, 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 youtube to invidious, a free and open source alternative
// @author       shmup
// @match        https://www.twitter.com/*
// @match        https://twitter.com/*
// @grant        none
// @run-at       document-start
// @license      Unlicense
// ==/UserScript==

/**
 * Privacy focused. Ethically designed. No Accounts. Multilingual. No Ads.
 *
 * https://github.com/iv-org/invidious
 **/

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