Last active 1741880417

export_blocked_noTS.js Raw
1(async function() {
2 const items = [];
3 for(const item of document.getElementsByClassName("selectable")) {
4 items.push(item.attributes['data-steamid'].textContent)
5 }
6 var a = document.createElement("a");
7 a.href = "data:application/json," + JSON.stringify(items);
8 a.download = "banned_users.json";
9 a.click();
10})();