NiTwit - From Twitter to Nitter and back

Show a button on the top right to quickly toggle between Twitter and Nitter.net (or any other instance).

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         NiTwit - From Twitter to Nitter and back
// @namespace    https://github.com/appel/userscripts
// @version      0.1.15
// @description  Show a button on the top right to quickly toggle between Twitter and Nitter.net (or any other instance).
// @author       Ap
// @match        *://*.twitter.com/*
// @match        *://*.x.com/*
// @match        *://*.nitter.net/*
// @match        *://nitter.poast.org/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    ("use strict");

    if (window.self !== window.top) {
        return; // Return if inside an iframe
    }

    let alternateDomain = "https://nitter.poast.org";

    let observer = new MutationObserver(function () {
        if (document.querySelector(".nitter-switch")) {
            return;
        }

        const url = window.location.href;
        let btnColor, btnText, btnTitle;

       if (url.includes("twitter.com") || url.includes("x.com")) {
            btnColor = "#ff6c60";
            btnText = "N";
            btnTitle = "Switch to Nitter";
        } else if (url.includes(alternateDomain)) {
            btnColor = "#1d9bf0";
            btnText = "T";
            btnTitle = "Switch to Twitter";
        }

        let btn = document.createElement("button");
        btn.classList.add("nitter-switch");
        btn.textContent = btnText;
        btn.title = btnTitle;
        btn.style.position = "fixed";
        btn.style.top = "10px";
        btn.style.right = "10px";
        btn.style.zIndex = "9999";
        btn.style.backgroundColor = btnColor;
        btn.style.color = "white";
        btn.style.borderRadius = "50%";
        btn.style.width = "24px";
        btn.style.height = "24px";
        btn.style.border = "none";
        btn.style.cursor = "pointer";
        btn.style.fontFamily = "-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif";
        btn.style.fontSize = "14px";
        btn.style.fontWeight = "700";
        btn.style.textAlign = "center";
        btn.style.padding = "0";
        btn.style.lineHeight = "24px";
        btn.style.transition = "transform .15s ease";

        document.body.appendChild(btn);

        btn.addEventListener("click", function () {
            let url = window.location.href;
            let newUrl = "";

            if (url.includes("x.com")) {
                newUrl = url.replace("https://x.com", alternateDomain);
            } else if (url.includes("twitter.com")) {
                newUrl = url.replace("https://twitter.com", alternateDomain);
            } else if (url.includes(alternateDomain)) {
                newUrl = url.replace(alternateDomain, "https://twitter.com");
            }

            // Add "pop" animation
            this.style.transform = "scale(1.2)";
            setTimeout(() => (this.style.transform = "scale(1)"), 150);

            window.location.href = newUrl;
        });
    });

    observer.observe(document, { childList: true, subtree: true });
})();