NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Twitter Following as default tab // @namespace https://asterleen.com // @version 0.1 // @description Open Following tab by default instead of that crappy FoR YoU // @author Asterleen // @match https://twitter.com/home // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com // @license MIT // @grant none // ==/UserScript== (function() { 'use strict'; let observer = new MutationObserver(() => { let homeTabs = document.querySelectorAll("a[role='tab']"); if (homeTabs.length === 2) { homeTabs[1].click(); observer.disconnect(); } }); observer.observe(document, { childList: true, subtree: true, attributes: false, characterData: false }); })();