Always Latest Tweets for Twitter

Auto-switch to latest tweets for Twitter

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

// ==UserScript==
// @name         Always Latest Tweets for Twitter
// @namespace    https://github.com/gslin/always-latest-tweets-for-twitter
// @version      0.20230121.0
// @description  Auto-switch to latest tweets for Twitter
// @author       Gea-Suan Lin <[email protected]>
// @match        https://mobile.twitter.com/*
// @match        https://twitter.com/*
// @grant        none
// @run-at       document-start
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    let ob = new window.MutationObserver(ml => {
        // If it's already in "Following" timeline, uninstall the observer.
        if (document.querySelector('nav[role="navigation"] div[role="presentation"]:nth-child(2) a[aria-selected="true"]')) {
            console.debug('Already on following timeline.');
            ob.disconnect();
        }

        ml.forEach(el => {
            const tab = document.querySelector('nav[role="navigation"] div[role="presentation"]:nth-child(2) a[aria-selected="false"]');
            if (tab) {
                tab.click();
            }
        });
    });

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