您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Nitter is basically dead. This essentially redirects to a dead site now, making this script essentially pointless. Thanks, Elon.
- // ==UserScript==
- // @name [DEPRECATED] lol just redirect to nitter
- // @namespace https://git.froggi.es/tom/redirect-to-nitter-n-shit/
- // @namespace https://gf.qytechs.cn/en/scripts/448085-lol-just-redirect-to-nitter
- // @version 0.10211
- // @license GNU GPLv3
- // @description Nitter is basically dead. This essentially redirects to a dead site now, making this script essentially pointless. Thanks, Elon.
- // @author tom
- // @match https://twitter.com/*
- // @icon https://git.froggi.es/tom/redirect-to-nitter-n-shit/raw/branch/main/icon.ico
- // @grant none
- // ==/UserScript==
- // Settings
- let timelineRedirect = true; // Redirect on main home page/timeline? true/false (script's still a wip so getting redirected to nitter by clicking on a tweet on the twitter timeline isn't programmed in yet. true by default until then.)
- let nitterInstance = "https://nitter.ca/"; // (PLEASE INCLUDE "https://" AT THE START OF THE DOMAIN AND "/" AT THE END) | What Nitter instance you'd like to be redirected to. Using ".ca" as default because it's the best instance I personally know, I also recommend "twiit.com", which selects an instance that's running well and isn't rate-limited.
- //
- // console.log("is this even loading");
- let href = document.location.href;
- var ofm = href.split("/");
- for (var i = 0; i < 2; i++) {
- ofm.shift();
- }
- // console.log(ofm);
- var goTo = nitterInstance;
- if (ofm[1] == "home" || ofm[1] == "" || ofm[1] == "i") {
- console.log("j");
- if (timelineRedirect == false) {
- goTo = "false";
- }
- } else {
- for (var m = 1; m < ofm.length; m++) {
- goTo += ofm[m] + "/";
- }
- }
- if (goTo == "false") {
- // console.log("no");
- } else {
- // console.info("this was supposed to redirect to " + goTo);
- document.location = goTo;
- }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址