安全教育平台自动答题

支持安全课程、专题活动

目前为 2019-07-03 提交的版本。查看 最新版本

// ==UserScript==
// @name         安全教育平台自动答题
// @description  支持安全课程、专题活动
// @namespace    https://greasyfork.org/users/197529
// @version      0.7.1
// @author       kkocdko
// @include      *://*.xueanquan.com/*
// ==/UserScript==
'use strict';

let FloatButton = document.FloatButton = document.FloatButton || (() => {
    let buttonBarShadow = document.createElement('div').attachShadow({ mode: 'open' });;
    buttonBarShadow.innerHTML = '<style>:host{position:fixed;top:3px;left:3px;z-index:9999999999;height:0}input~*{float:left;margin:3px;padding:1em;outline:0;border:0;border-radius:4px;background:#2196f3;box-shadow:0 1px 3px 0 #00000022;color:#fff;font-size:14px;line-height:0;transition:.3s}:active{background:#63b5f7;box-shadow:0 2px 5px 0 #00000033}button:active{transition:0s}label{border-radius:50%}input{display:none}input:checked~button{visibility:hidden;opacity:0;transform:translateY(-3em)}input:checked~label{opacity:.3;transform:translateY(3em)}</style><input id=hidebtns type=checkbox><label for=hidebtns></label>';
    document.body.appendChild(buttonBarShadow.host);
    return function(text, onclick) {
        let button = document.createElement('button');
        button.innerText = text;
        button.addEventListener('click', onclick);
        buttonBarShadow.appendChild(button);
        return button;
    };
})();

new FloatButton('自动答题', () => {
    document.querySelectorAll('[type=radio], [type=checkbox]').forEach(el => {
        if (!el.checked) {
            el.value = 1;
            el.click();
        }
    });
    scrollTo(scrollX, document.documentElement.scrollHeight);
});