scripts-styles/scripts/redirect-twitter-nitter.user.js
Chev 6ed3b1cd25
UserScript redirects: Use simpler domain replacement
location.hostname is a lot easier to use than replacing the domain in location.href
2023-07-20 14:16:05 -07:00

27 lines
993 B
JavaScript

// ==UserScript==
// @name Redirect: Twitter to Nitter
// @author Chev <riskyrains@proton.me> (https://github.com/chev2)
// @version 1.0.3
// @description Redirects from Twitter to Nitter, a Twitter alternative front-end.
// @namespace github.com/chev2
// @license Apache-2.0
// @homepageURL https://github.com/chev2/scripts-styles
// @supportURL https://github.com/chev2/scripts-styles/issues
// @updateURL https://raw.githubusercontent.com/chev2/scripts-styles/main/scripts/redirect-twitter-nitter.user.js
// @downloadURL https://raw.githubusercontent.com/chev2/scripts-styles/main/scripts/redirect-twitter-nitter.user.js
// @match *://twitter.com/*
// @icon https://icons.duckduckgo.com/ip3/nitter.net.ico
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
'use strict';
// Put your instance domain here
const INSTANCE_DOMAIN = "nitter.nl"
location.hostname = INSTANCE_DOMAIN;
})();