// ==UserScript== // @name NiTwit - From Twitter to Nitter and back // @namespace http://tampermonkey.net/ // @version 0.1.6 // @description Show a button on the top to quickly toggle between Twitter and Nitter.net (or any other instance). // @author Ap // @match *://*.twitter.com/* // @match *://*.nitter.net/* // @match *://*.unofficialbird.com/* // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function () { ("use strict"); let alternateDomain = "https://nitter.net"; // MutationObserver watches for changes in the document let observer = new MutationObserver(function () { if (document.querySelector(".nitter-switch")) { return; } const url = window.location.href; let newUrl = ""; let btnColor, btnText; // Set button color and text based on the current URL if (url.includes("twitter.com")) { btnColor = "#ff6c60"; btnText = "N"; } else if (url.includes(alternateDomain)) { btnColor = "#1d9bf0"; btnText = "T"; } // Create button let btn = document.createElement("button"); btn.classList.add("nitter-switch"); btn.textContent = btnText; 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 = "30px"; btn.style.height = "30px"; btn.style.border = "none"; btn.style.cursor = "pointer"; btn.style.fontSize = "20px"; btn.style.textAlign = "center"; btn.style.padding = "0"; btn.style.lineHeight = "30px"; // Add button to page document.body.appendChild(btn); btn.addEventListener("click", function () { if (url.includes("twitter.com")) { newUrl = url.replace("https://twitter.com", alternateDomain); } else if (url.includes(alternateDomain)) { newUrl = url.replace(alternateDomain, "https://twitter.com"); } window.location.href = newUrl; }); }); observer.observe(document, { childList: true, subtree: true }); })();