Greasy Fork

来自缓存

Greasy Fork is available in English.

QQ邮箱隐藏全部标记已读按钮

经常误按到QQ邮箱的全部标记已读按钮,所以隐藏下。。

当前为 2017-11-24 提交的版本,查看 最新版本

// ==UserScript==
// @name         QQ邮箱隐藏全部标记已读按钮
// @namespace    https://zvv.me/
// @version      0.1
// @description  经常误按到QQ邮箱的全部标记已读按钮,所以隐藏下。。
// @author       Gh0st
// @match        *mail.qq.com*
// @grant        none
// @include *mail.qq.com*
// ==/UserScript==

(function() {
    'use strict';
document.getElementById("setAllReaded").style.display = "none";
    // Your code here...
})();