删除掉全网页的title, 摸鱼用.
// ==UserScript==
// @name 移除全网页title
// @namespace http://tampermonkey.net/
// @version 1.3
// @description 删除掉全网页的title, 摸鱼用.
// @author sumuzhe
// @match *://*/*
// @exclude *://localhost:*/*
// @exclude *://*mail*/*
// @exclude *://qiye.163.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
fish();
setInterval(fish, 2000);
})();
function fish() {
var titles = document.getElementsByTagName("title");
for (var i = 0; i < titles.length; i++) {
titles[i].text = "";
}
}