Greasy Fork is available in English.
Add profile link to nav bar.
Fra og med
- // ==UserScript==
- // @name Add profile link to nav.
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description Add profile link to nav bar.
- // @author Al Cheung
- // @match *://github.com/*
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- const $ = document.querySelector.bind(document);
- const headerList = $(`nav.d-flex`);
- const a = document.createElement(`a`);
- a.className = `js-selected-navigation-item Header-link mr-3`;
- a.innerText = `My Profile`;
- const userName = $(`details > summary > img`).alt.replace(`@`, '');
- a.href = `//github.com/${userName}`;
- headerList.appendChild(a);
- })();