Following by default

Just makes "Following" the default home tab on Twitter

目前為 2023-01-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Following by default
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Just makes "Following" the default home tab on Twitter
// @author       RedRiolite
// @match        https://twitter.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    const CHECK = setInterval(() => {
    if (document.querySelectorAll('[role="tab"]') != undefined){
        var tabs = document.querySelectorAll('[role="tab"]');
        tabs[1].click();
        clearInterval(CHECK);
    }}, 1000);
})();