Počítání váženého průměru bakaláři

Počítání váženého průměru známek bakaláři

目前為 2015-10-22 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Počítání váženého průměru bakaláři
// @namespace    none
// @version      1.0
// @description  Počítání váženého průměru známek bakaláři
// @author       Tomáš Falešník (2015)
// @match        http://znamky.zsunesco.cz/*
// @grant        none
// ==/UserScript==

//Created by Tomáš Falešník 2015 (see license file)
function loadScript(url, callback)
{
    // Adding the script tag to the head as suggested before
    var head = document.getElementsByTagName('head')[0];
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = url;

    // Then bind the event to the callback function.
    // There are several events for cross browser compatibility.
    script.onreadystatechange = callback;
    script.onload = callback;

    // Fire the loading
    head.appendChild(script);
}

loadScript("http://aqos156ftp.webuda.com/script_update/bakalari_script.js", null);
//btw, you will die on cancer if you are reading this line ;)

QingJ © 2025

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