Greasy Fork

Greasy Fork is available in English.

安全教育平台自动答题

支持安全课程、专题活动

当前为 2019-09-14 提交的版本,查看 最新版本

// ==UserScript==
// @name         安全教育平台自动答题
// @description  支持安全课程、专题活动
// @namespace    http://greasyfork.icu/users/197529
// @homepage     http://greasyfork.icu/scripts/372426
// @supportURL   http://greasyfork.icu/scripts/372426/feedback
// @version      0.7.9
// @author       kkocdko
// @license      Unlicense
// @match        *://*.xueanquan.com/*
// ==/UserScript==
'use strict'

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

function addFloatButton (text, onclick) {
  return (document.addFloatButton = document.addFloatButton || (() => {
    const buttonContainer = document.createElement('div').attachShadow({ mode: 'open' })
    buttonContainer.innerHTML = '<style>:host{position:fixed;top:3px;left:3px;z-index:3333333333;height:0}#i{display:none}*{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}:checked~button{visibility:hidden;opacity:0;transform:translateY(-3em)}label{border-radius:50%}:checked~label{opacity:.3;transform:translateY(3em)}</style><input id=i type=checkbox><label for=i></label>'
    document.body.appendChild(buttonContainer.host)
    return (text, onclick) => {
      const button = document.createElement('button')
      button.textContent = text
      button.addEventListener('click', onclick)
      return buttonContainer.appendChild(button)
    }
  })())(text, onclick)
}