Created
February 28, 2021 17:35
-
-
Save Jackzmc/f4c1ba90cf6483584eab1a18070b6811 to your computer and use it in GitHub Desktop.
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
| (async function() { | |
| const items = []; | |
| for(const item of document.getElementsByClassName("selectable")) { | |
| items.push(item.attributes['data-steamid'].textContent) | |
| } | |
| var a = document.createElement("a"); | |
| a.href = "data:application/json," + JSON.stringify(items); | |
| a.download = "banned_users.json"; | |
| a.click(); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment