重大网络教育练习题答案

重庆大学网络教育学院练习题答案啊!

// ==UserScript==
// @name         重大网络教育练习题答案
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  重庆大学网络教育学院练习题答案啊!
// @author       You
// @match        https://exercise.5any.com/Exercise/WebUI/Exerpool/Index
// @icon         https://www.google.com/s2/favicons?domain=5any.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    setInterval(function(){
    $(".std-answer").attr("style","");
    $(".std-answer").removeClass("hidden");
        },1000)
})();