Last active
August 31, 2023 06:22
-
-
Save Silica163/036bae71be277682a53494f2ed893a40 to your computer and use it in GitHub Desktop.
cheat code for https://www.typingstudy.com
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
| /* | |
| 1. Go to https://www.typingstudy.com and select which lesson you want to cheat. | |
| 2.1 Press and hold "Space bar" and some letter until the test finish. | |
| 2.2 Do the test until you see your typing resault. | |
| 3. Open developer tools' console and paste this code, then hit enter. | |
| 4. Edit "Exercise time" and "typing speed" to anyting you want by use inspector(Firefox) or Elements(Chrome). | |
| */ | |
| for (let e of document.getElementsByClassName("result")) { | |
| e.innerHTML = e.innerHTML.slice(e.innerHTML.indexOf("/") + 1) + "/" + e.innerHTML.slice(e.innerHTML.indexOf("/") + 1); | |
| e.style = "background-position:500px 0;"; | |
| } | |
| for (let e of document.getElementsByClassName("percent")) e.innerHTML = "100%" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment