rc/config/qutebrowser/greasemonkey/nitter_redirect.js

16 lines
422 B
JavaScript
Raw Normal View History

2021-11-13 01:01:11 +00:00
// ==UserScript==
// @name Nitter redirector
// @namespace https://gist.github.com/bitraid/d1901de54382532a03b9b22a207f0417
// @version 1.0
// @description reddit to teddit
// @match *://*.twitter.com/*
// @match *://twitter.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
top.location.hostname = "nitter.pussthecat.org";
})();