Nitro Type "Support" navigation button

This button was back in the v2 and v1 version

  1. // ==UserScript==
  2. // @name Nitro Type "Support" navigation button
  3. // @namespace https://www.youtube.com/channel/UCOQMOlaQ6GxltRHA_mwGVvQ
  4. // @version 1.0
  5. // @description This button was back in the v2 and v1 version
  6. // @author Ashwin
  7. // @match https://www.nitrotype.com/*
  8. // ==/UserScript==
  9. window.onload=function(){var e=document.querySelector(".nav-list"),n=document.createElement("li");n.className="nav-list-item",e.appendChild(n),a=document.createElement("a"),a.href="/updates",a.className="nav-link",a.innerHTML="Updates",a.style.padding="15px 14px";for(var t=document.querySelectorAll(".nav-link"),l=0;l<t.length;l++)t[l].style.padding="15px 14px";n.appendChild(a),"https://www.nitrotype.com/Support"==window.location.href&&(n.className="nav-list-item is-current")};