GitLab navigation buttons

Add buttons on the top bar for quick navigation

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                GitLab navigation buttons
// @description         Add buttons on the top bar for quick navigation
// @author              eXistenZNL
// @namespace           eXistenZNL

// @grant               none
// @run-at              document-end
// @include             *://gitlab.com/*
// @include             *://gitlab.*.com/*

// @date                03/22/2021
// @modified            05/20/2021
// @version             1.1.0
// ==/UserScript==


(function () {
    'use strict';

    const nav = document.querySelector('div.top-bar-container');
    const html = `
    <div class="gl-display-none gl-sm-display-block">
      <ul class="breadcrumbs-list">
        <li><a href="/dashboard/projects">Projects</a></li>
        <li><a href="/dashboard/groups">Groups</a></li>
        <li><a href="/dashboard/milestones">Milestones</a></li>
        <li><a href="/dashboard/snippets">Snippets</a></li>
        <li><a href="/dashboard/activity">Activity</a></li>
        <li><a href="/admin">Admin</a></li>
      </ul>
    </div>`
    $(nav).append(html);
})();