软通考试

软通自动考试脚本,一秒考满分

  1. // ==UserScript==
  2. // @name 软通考试
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.1
  5. // @description 软通自动考试脚本,一秒考满分
  6. // @author wing
  7. // @match https://www.issedu365.com/application/appexaminedetail/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. let typeid = location.search.substr(1).split('&').find(item => item.startsWith('typeid=')).split('=')[1];
  15. fetch("/miexamine/v1/examine/examinedatatyperesult/"+typeid+"/")
  16. .then((res) => {
  17. return res.json();
  18. })
  19. .then(data => {
  20. let answers = JSON.parse(sessionStorage.getItem(typeid));
  21. answers.paperanswerlist.forEach(item => {
  22. item.answer = data.answers.find(item2 => item2.id == item.id).answer;
  23. })
  24. sessionStorage.setItem(typeid, JSON.stringify(answers));
  25. document.querySelector(".confirm-btn").click()
  26. })
  27. // Your code here...
  28. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址