Last active
December 27, 2025 18:00
-
-
Save JohnnyWalkerDigital/b6bf7237fba5f8c92d13d3c90c3f6ca7 to your computer and use it in GitHub Desktop.
GameFAQs - Text File Extractor
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
| // Copy and paste the following into your browser console - author: proboardslol | |
| (function() { | |
| const file = new Blob([$(".faqtext").text()], {type: "application/text"}); | |
| const a = document.createElement("a"), | |
| url = URL.createObjectURL(file); | |
| a.href = url; | |
| a.download = window.document.title + ".txt"; | |
| document.body.appendChild(a); | |
| a.click(); | |
| })() |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What it does:
.faqtext<a href=''></a>elementaelementaelement