// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; $('input[type="radio"][value="1"]').each(function(){ $(this).prop("checked",true) }); })();