Greasy Fork is available in English.

Stack for Github

Must have for all devs

  1. // ==UserScript==
  2. // @name Stack for Github
  3. // @namespace Pitr
  4. // @version 0.1
  5. // @description Must have for all devs
  6. // @author Pitr
  7. // @match https://github.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. var ul = document.querySelector('.d-flex.pl-2.flex-items-center.text-bold.list-style-none');
  15. var newli = document.createElement('li');
  16. newli.innerHTML = '<a href="https://stackoverflow.com/" class="js-selected-navigation-item HeaderNavlink px-2">Stack Overflow</a>';
  17. ul.appendChild(newli);
  18. })();