Greasy Fork

Greasy Fork is available in English.

广东继续教育和公需课课后作业

try to take over the world!

当前为 2019-07-24 提交的版本,查看 最新版本

// ==UserScript==
// @name         广东继续教育和公需课课后作业
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://ggfw.gdhrss.gov.cn/zxpx/auc/courseExam*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    $('input[type="radio"][value="1"]').each(function(){
        $(this).prop("checked",true)
    });
})();