Skip to content

Instantly share code, notes, and snippets.

@Jackzmc
Created February 28, 2021 17:35
Show Gist options
  • Select an option

  • Save Jackzmc/f4c1ba90cf6483584eab1a18070b6811 to your computer and use it in GitHub Desktop.

Select an option

Save Jackzmc/f4c1ba90cf6483584eab1a18070b6811 to your computer and use it in GitHub Desktop.
(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