您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
There's a new nitro type page, the "Updates" page. However it doesn't have "Updates" on the navigation to go to that page. You can use this script so you can access the "Updates" page easily like any other nitro type pages.
- // ==UserScript==
- // @name Nitro Type "Updates" navigation button
- // @namespace https://www.youtube.com/channel/UCOQMOlaQ6GxltRHA_mwGVvQ
- // @version 1.0
- // @description There's a new nitro type page, the "Updates" page. However it doesn't have "Updates" on the navigation to go to that page. You can use this script so you can access the "Updates" page easily like any other nitro type pages.
- // @author Ginfio
- // @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/updates"==window.location.href&&(n.className="nav-list-item is-current")};