BSI金融实训平台字符专项练习脚本

自动填入字符

// ==UserScript==
// @icon            http://weibo.com/favicon.ico
// @name            BSI金融实训平台字符专项练习脚本
// @author          kkevin
// @description     自动填入字符
// @match           *://bsi.occupationedu.com/SkillExam/TypeWrite/*
// @require         http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
// @version         0.0.4
// @namespace https://greasyfork.org/users/501359
// ==/UserScript==
(function () {
    'use strict';
    setInterval(function(){
    if($('#TestStartDateTime') !== null) {
        $('*[id*=Tcontent]:visible').each(function() {
            $(this).next().val($(this).text().trim())
            $(this).next().trigger("onkeyup")
        });
        document.getElementById("timeisOver").value = "1";
        isover = '1';
    }},4000);
})();