Twitter "title" fixer

Fixes the title from X to Twitter

// ==UserScript==
// @name         Twitter "title" fixer
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Fixes the title from X to Twitter
// @author       Jojo
// @match        https://twitter.com/*
// @grant        none
// @license      MIT
// ==/UserScript==
function changeTitle(){
        if(document.title !== "Twitter")
            document.title = "Twitter";
    }
(function() {
    setInterval((e) =>{
        changeTitle();
    }, 1000);
})();