Calm Quora's annoying red notification dots

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.

Versión del día 04/05/2018. Echa un vistazo a la versión más reciente.

// ==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%); }');
长期地址
遇到问题?请前往 GitHub 提 Issues。