// ==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 // @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.0.1 // @require https://cdn.staticfile.org/jquery/1.12.2/jquery.min.js // @downloadURL none // ==/UserScript== (function () { 'use strict'; const nav = document.querySelector('div.title-container'); const html = `
` $(nav).append(html); })();