This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name HumanBenchmark number | |
// @version 1 | |
// @grant none | |
// @match https://humanbenchmark.com/tests/number-memory | |
// ==/UserScript== | |
const getParentDiv = () => { | |
const $parentDivs = document.getElementsByClassName('number-memory-test'); | |
if ($parentDivs.length === 0) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Human benchmark typing | |
// @version 1 | |
// @grant none | |
// @match https://humanbenchmark.com/tests/typing | |
// ==/UserScript== | |
const typeText = async (text, targetDiv) => { | |
for (const ch of text) { |
OlderNewer