Greasy Fork 支持简体中文。

AutoRatedbdxaao

dbdx自动老师评分

// 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});
            });
        }
})();