yen867gmail.com / fk_etag

// ==UserScript==
// @name     fk_etag
// @include  https://www.fetc.net.tw/UX/*
// @require  https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js
// @require  https://gist.github.com/raw/2625891/waitForKeyElements.js
// @license  MIT
// @description check the fking etag checkbox
// @version  0.0.3
// @grant    GM_addStyle
// ==/UserScript==
// 


function checkTheFkingCheckBox () {
    var x = document.getElementsByName("billNumberchk");
    var i;
    for (i = 0; i < x.length; i++) {
        if (x[i].type == "checkbox") {
            x[i].checked = true;
        }
    }
    countTotal();
}

waitForKeyElements ("#paybtn", checkTheFkingCheckBox);