Twitter Without Statistics

Remove all statistics on Twitter

// ==UserScript==
// @name         Twitter Without Statistics
// @version      2024-06-19
// @description  Remove all statistics on Twitter
// @author       You
// @match        https://twitter.com/*
// @grant        none
// @run-at       documnet-idle
// @license       MIT
// @namespace https://greasyfork.org/users/1309250
// ==/UserScript==

(function() {
    'use strict';

    setInterval(removeStatistics,300); //i coudln't get MutationObserver or waitForKeyElements to work so while(true) it is

    function removeStatistics(){
        const statisticsText = document.getElementsByClassName('css-1jxf684 r-1ttztb7 r-qvutc0 r-poiln3 r-n6v787 r-1cwl3u0 r-1k6nrdp r-n7gxbd')
        if (statisticsText){
            for (let i=0; i<statisticsText.length; i++){
                statisticsText[i].remove(); //removes statistics text element itself
            }
        }
    }

})();