Greasy Fork

来自缓存

AutoRatedbdxaao

dbdx自动老师评分

当前为 2019-05-17 提交的版本,查看 最新版本

// JavaScript source code
// ==UserScript==
// @name         AutoRatedbdxaao
// @namespace    http://github.com
// @version      0.3
// @description  dbdx自动老师评分
// @author       Caijibai
// @match        *://219.216.96.4/eams/quality/*
// ==/UserScript==

(() => {
    "use strict";
   (() => {
        var box = document.getElementById('app-main');
        if (box) {
            box.addEventListener('dblclick', function(){
                [].forEach.call(document.getElementsByClassName('option-list'), e => {e.children[0].children[0].checked=true});
            });
        }
    });
})();