// ==UserScript== // @name Gitlab navigation buttons // @description Add back the buttons on the navigation bar that have been hidden in the hamburger menu in GitLab 14. Modified from https://greasyfork.org/en/scripts/428343-gitlab-navigation-buttons // @author v1rgul // @namespace v1rgul // @grant none // @run-at document-end // @include *://gitlab.com/* // @include *://gitlab.*.*/* // @include *://git.*.*/* // @date 2021-07-21 // @version 1.0.0 // @require https://cdn.staticfile.org/jquery/1.12.2/jquery.min.js // @downloadURL https://update.greasyfork.icu/scripts/429693/Gitlab%20navigation%20buttons.user.js // @updateURL https://update.greasyfork.icu/scripts/429693/Gitlab%20navigation%20buttons.meta.js // ==/UserScript== (function () { 'use strict'; const nav = document.querySelector('div.title-container'); const html = `
` $(nav).append(html); })();