GitHub Clear Dashboard

Removes trash from github dashboard.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         GitHub Clear Dashboard
// @description  Removes trash from github dashboard.
// @version      1.0.1
// @author       tariel36
// @namespace    https://github.com/tariel36/github-clear-dashboard
// @match        https://github.com/
// @license      MIT
// ==/UserScript==

const inter = 100;
const maxCounter = (3 * 1000) / inter;

let counter = 0;

const interval = setInterval(() => {
    tryLoadMore();
    centerList();
}, inter);

function clearDashboard() {
    const mainDiv = document.querySelector('.application-main > div > div > div');

    if (mainDiv) {
        mainDiv.remove();
    }

    const side = getSide();

    if (side) {
        side.style = "display: flex; justify-items: center; justify-content: center; width: 100%;";

        const innerDiv = side.querySelector('div');

        if (innerDiv) {
            innerDiv.style = 'min-width: 350px; max-width: 800px; width: 50%;';
        }
    }

    centerList();
}


function tryLoadMore() {
    counter++;

    if (counter >= maxCounter) {
        clearInterval(interval);
        return;
    }

    const side = getSide();

    const btn = side?.querySelector('button');

    if (!btn) {
        return;
    }

	btn.classList.remove('width-full');

	const form = document.querySelector('.js-repos-container > form');

    if (form) {
        form.style = 'text-align: center';
    }

    btn.click();
}

function centerList() {
    const side = getSide();

    if (!side) {
        return;
    }

    const repos = [...side.querySelectorAll('.list-style-none')];

    if (!repos) {
        return;
    }

	repos.forEach(x => {
		x.querySelectorAll('li')
			.forEach(y => {
				y.style = 'text-align: center;';
				y.querySelector('div').style = 'justify-content: center;';
			});
	});
}

function getSide() {
    return document.querySelector('aside.feed-left-sidebar');;
}

window.addEventListener('load', function() {
    clearDashboard();
}, false);