// ==UserScript== // @name QQ邮箱隐藏全部标记已读按钮 // @namespace https://zvv.me/ // @version 0.1 // @description 经常误按到QQ邮箱的全部标记已读按钮,所以隐藏下。。 // @author Gh0st // @match *mail.qq.com* // @grant none // @include *mail.qq.com* // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.getElementById("setAllReaded").style.display = "none"; // Your code here... })();