您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The red notifications on Quora are too glaring, appear too frequently, and do not go away easily enough. Let's make them grey so they aren't such a bother.
当前为
// ==UserScript== // @name Calm Quora's annoying red notification dots // @namespace joeytwiddle // @version 0.0.5 // @license MIT // @description The red notifications on Quora are too glaring, appear too frequently, and do not go away easily enough. Let's make them grey so they aren't such a bother. // @author joeytwiddle // @match https://www.quora.com/* // @grant GM_addStyle // ==/UserScript== // Make the red notification dots grey instead GM_addStyle('.SiteHeaderBadge, .WriteNavbadge, .red_badge { background: #ddd !important; background-color: #ddd !important; color: #666 !important; transform: scale(0.8); opacity: 0.5; }'); // Don't show any popups GM_addStyle('.Growl { display: none !important; }'); // Just make the whole damn header grey! // As requested by Keeni: https://greasyforks.org/en/forum/discussion/37380/x // In fact I think I will just apply this to anything I find on the site which is red! GM_addStyle('.SiteHeader, .questions_to_answer_icon { filter: saturation(0%); }');