Nummon's Calc Loader

Auto-loads Nummon's Calculator script for Kittens Game

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         Nummon's Calc Loader
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Auto-loads Nummon's Calculator script for Kittens Game
// @author       Milonti - [email protected]
// @match        *://*bloodrizer.ru/games/kittens*
// @match        *://kittensgame.com/*
// @exclude      *://*bloodrizer.ru/games/kittens/wiki*
// @exclude      *://kittensgame.com/*/wiki*
// @grant        none
// @notes        I do not own Nummon's Calculator. This is only a loader script
// ==/UserScript==

function init_nummon() {
    if (typeof gamePage == "object") {
        var mod = document.createElement('script');
        mod.src = 'https://cdn.jsdelivr.net/gh/Bioniclegenius/NummonCalc/NummonCalc.js';
        mod.id = 'modscript_TriggerNotify';
        document.head.appendChild(mod);
    } else if(typeof gamePage == "undefined") {
        setTimeout(function(){
            init_nummon();
        }, 100);
    }
}

init_nummon();