Greasy Fork is available in English.

超星批量打分去除人数限制

增加200人和1000人,超星批量打分去除人数限制

作者
zzlb0224
今日安裝
0
安裝總數
10
評價
0 0 0
版本
0.2
建立日期
2022-07-21
更新日期
2022-07-21
授權條款
MIT
腳本執行於

// ==UserScript==
// @name 超星批量打分去除人数限制
// description 超星批量打分去除人数限制
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://mooc1.chaoxing.com/work/batchMarkingScore?*
// @icon https://www.google.com/s2/favicons?sz=64&domain=chaoxing.com
// @grant none
// @license MIT
// ==/UserScript==

(function() {
'use strict';
function addHtml(parent, type = "div", attrs = {}, click = undefined) {
const element = document.createElement(type);
for (const attr in attrs) {
element[attr] = attrs[attr];
element.setAttribute(attr, attrs[attr]);
}
click && element.addEventListener("click", click);
parent.appendChild(element);
return element;
}
addHtml(document.querySelector("#pageCount"),"Option",{Value:"200",innerText:"200"})
addHtml(document.querySelector("#pageCount"),"Option",{Value:"1000",innerText:"1000"})
// Your code here...
})();