// ==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 // @downloadURL https://update.greasyfork.icu/scripts/428343/GitLab%20navigation%20buttons.user.js // @updateURL https://update.greasyfork.icu/scripts/428343/GitLab%20navigation%20buttons.meta.js // ==/UserScript== (function () { 'use strict'; const nav = document.querySelector('div.top-bar-container'); const html = `
` $(nav).append(html); })();