Get Custom Titles For Nitro Type

Nitro Type Get Custom Titles

// ==UserScript==
// @name         Get Custom Titles For Nitro Type
// @namespace    https://www.youtube.com/channel/UC62K5Rmg7L3-E5FBm2CbGMw?view_as=subscriber
// @version      1.0
// @description  Nitro Type Get Custom Titles
// @match        https://www.nitromath.com/*
// ==/UserScript==

(function() {
    'use strict';
    setInterval(function() {
        var a = JSON.parse(localStorage["persist:nt"]);
        var b = JSON.parse(a.user);
        b.title = "Please Subscribe";
        a.user = JSON.stringify(b);
        localStorage["persist:nt"] = JSON.stringify(a);
    }, 8000);
})();
// Credit: https://www.youtube.com/channel/UC4KqtdIrZucElkUUgma-79w79w

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址