// ==UserScript== // @name GitHub Logo to Profile // @version 0.1 // @description Make the main octocat logo take me to my profile for faster navigation // @author Pachonk // @match https://github.com/* // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelectorAll('.header-logo-invertocat')[0].href = 'https://github.com/pachonk'; let headerNav = document.querySelectorAll('.header-nav')[0]; headerNav.innerHTML = '
  • Home
  • ' + headerNav.innerHTML; })();