Twitter "title" fixer

Fixes the title from X to Twitter

  1. // ==UserScript==
  2. // @name Twitter "title" fixer
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Fixes the title from X to Twitter
  6. // @author Jojo
  7. // @match https://twitter.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11. function changeTitle(){
  12. if(document.title !== "Twitter")
  13. document.title = "Twitter";
  14. }
  15. (function() {
  16. setInterval((e) =>{
  17. changeTitle();
  18. }, 1000);
  19. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址