humanbenchmark.com Cheats

2023/10/21 08:20:09

  1. // ==UserScript==
  2. // @name humanbenchmark.com Cheats
  3. // @name:zh-CN 人类测试作弊工具
  4. // @namespace Violentmonkey Scripts
  5. // @match https://humanbenchmark.com/tests/reactiontime
  6. // @grant none
  7. // @version 1.2
  8. // @author -
  9. // @license MIT
  10. // @run-at document-idle
  11. // @description:zh-cn 尽情享受作弊之旅吧!
  12. // @description 2023/10/21 08:20:09
  13. // ==/UserScript==
  14. 'use strict';
  15. const ev = new MouseEvent("mousedown", {
  16. bubbles: true,
  17. cancelable: true,
  18. });
  19. const _dd = document.querySelector('[data-test="true"]');
  20. new MutationObserver(list => {
  21. if (list[0].target.classList[0] == "view-go")
  22. _dd.dispatchEvent(ev);
  23.  
  24. }).observe(_dd, {attributeFilter: ['class']});
  25.