Greasy Fork is available in English.

Hide Reddit Notification Bell Icon and Count

Hides the bell icon and its following separator on old Reddit

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Hide Reddit Notification Bell Icon and Count 
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Hides the bell icon and its following separator on old Reddit
// @match        https://old.reddit.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    function hideBell() {
        let notif = document.querySelector('a#notifications');
        while (notif) {
            notif.style.display = 'none';
            const next = notif.nextElementSibling;
            if (next && (next.classList.contains('separator') || next.classList.contains('badge-count') || next.classList.contains('message-count'))) {
                next.style.display = 'none';
                notif = next;
            } else {
                notif = false;
            }
        }

    }

    // Run once and also when DOM updates
    hideBell();
    const observer = new MutationObserver(hideBell);
    observer.observe(document.body, {childList: true, subtree: true});
})();