sindresorhus/refined-github

Automatically close the notification top bar #3061

evandrocoan posted onGitHub

This new notification system keeps a top bar top when I open a notification. That bar is completely useless because I always open all notifications in a new tab from the main page, then, I never use anything on it other than the close button (because it keeps a persistent top bar covering my precious page vertical space).


I also don’t use it, but I don’t see the problem with keeping it there for those who do use it.

We even just added a feature for it https://github.com/sindresorhus/refined-github/pull/3036

posted by fregante almost 5 years ago

I am not saying to close it by default for everyone, but just when someone configures to always close it.

posted by evandrocoan almost 5 years ago

I am not saying to close it by default for everyone

https://github.com/sindresorhus/refined-github/issues/2960#issuecomment-606765382

posted by fregante almost 5 years ago

I installed Tampermonkey and created this script:

// ==UserScript==
// @name         Close GitHub Notifications bar
// @namespace    *
// @version      0.1
// @description  https://github.com/sindresorhus/refined-github/issues/3061
//               https://gist.github.com/evandrocoan/0e25dd233f3f99352a8147041809ba8d
// @author       You
// @include http://*github.com/*
// @include https://*github.com/*
// @require http://code.jquery.com/jquery-3.4.1.min.js
// ==/UserScript==

(function() {
    'use strict';
    clickButton('button[aria-label="Close notification controls"].btn-octicon.js-flash-close');
    deleteElement('.js-sticky.js-sticky-offset-scroll.top-0.gh-header-sticky.is-stuck');
    function deleteElement(selector) {
        let delayed = () => {
            let element = $(String(selector));
            if(element.length) {
                console.log(`Deleting element '${element.text().replace(/\s+/g, ' ').trim()}' button`);
                element.remove();
            }
            setTimeout(delayed, 2000);
        }
        setTimeout(delayed, 2000);
    }
    function clickButton(selector) {
        let delayed = () => {
            let element = $(String(selector));
            if(element.length) {
                console.log(`Closing element '${element.html()}' button`);
                element.click();
            }
            setTimeout(delayed, 2000);
        }
        setTimeout(delayed, 2000);
    }
})();
posted by evandrocoan almost 5 years ago

Thank you for sharing your solution!

posted by fregante almost 5 years ago

Fund this Issue

$0.00
Funded

Pull requests