移除全网页title

删除掉全网页的title, 摸鱼用.

  1. // ==UserScript==
  2. // @name 移除全网页title
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.3
  5. // @description 删除掉全网页的title, 摸鱼用.
  6. // @author sumuzhe
  7. // @match *://*/*
  8. // @exclude *://localhost:*/*
  9. // @exclude *://*mail*/*
  10. // @exclude *://qiye.163.com/*
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. fish();
  17. setInterval(fish, 2000);
  18. })();
  19.  
  20. function fish() {
  21. var titles = document.getElementsByTagName("title");
  22. for (var i = 0; i < titles.length; i++) {
  23. titles[i].text = "";
  24. }
  25. }

QingJ © 2025

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