Nitro Type "Support" navigation button

This button was back in the v2 and v1 version

目前為 2024-12-26 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Nitro Type "Support" navigation button
// @namespace    https://www.youtube.com/channel/UCOQMOlaQ6GxltRHA_mwGVvQ
// @version      1.0
// @description This button was back in the v2 and v1 version
// @author       Ashwin
// @match        https://www.nitrotype.com/*
// ==/UserScript==
 
 
 
 
 
 
 
 
 
 
 
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")};