Post
Topic
Board Meta

Re: Banned Users Identifier
by
promise444c5
on 03/05/2025, 09:29:17 UTC

Does it download this 6 MB for each view, or is it cached? Do you need the usernames, or can I get you a list with only userIDs?

No, i catched the resource for the extension to 1 day , it can be changed manually...
Code:
const CACHE_DURATION = 60 * 60 * 1000 * 24; // Cache for 1day (24 hours)
Do you need the usernames, or can I get you a list with only userIDs?
Not really(ids can also identify), but since the file provides both the username and ids , i just scraped both.. for now i'm only using the username though, but stored the ids too...
Code:
{ userId: parts[0].trim(), username: parts[1].trim() };