Aniket
eccdf80b95
Add Pronouns.page ( #2419 )
...
* Add support for Pronouns.page (#2418 )
* Update the url
2025-10-06 09:52:56 -03:00
Manjush Shetty
eb51bf9b1a
misc: remove isnsfw from hive
2025-10-06 17:15:44 +05:30
Manjush Shetty
5d7b438fd6
add urlProbe
2025-10-06 17:11:50 +05:30
Manjush Shetty
ef0b97fb57
chore: try with api instead
2025-10-06 16:54:07 +05:30
Manjush Shetty
c6c3522159
chore: add custom regex for codesandbox usernames
2025-10-06 16:45:53 +05:30
Manjush Shetty
2908c8eaa8
chore: try with different message
2025-10-06 16:40:59 +05:30
Manjush S
f05b8e0ed6
Merge branch 'sherlock-project:master' into code-sandbox
2025-10-06 16:21:40 +05:30
Fandroid745
01bca6b39f
fix: corrected the regexCheck field value to an empty string
2025-10-06 08:57:11 +05:30
shreyasNaik0101
0cf110e69e
Merge branch 'master' into fix/remediate-blitztactics
2025-10-05 22:56:59 +05:30
Paul Pfeister
a88adb0488
Merge pull request #2559 from frogtheastronaut/master
...
Removed duplicate Bluesky entry in data.json
2025-10-05 13:23:53 -04:00
Fandroid745
4010a58dde
fix: changed the username_claimed to example placeholder
2025-10-05 22:23:17 +05:30
paul_kniaz
7a4f19e6b3
Fix MuseScore URL endpoint
2025-10-05 12:27:30 -04:00
paul_kniaz
f958e7b96f
update MuseScore username_claimed to arrangeme (valid profile)
2025-10-05 12:13:37 -04:00
paul_kniaz
4c99bf3b75
Add MuseScore site (clean version)
2025-10-05 10:44:55 -04:00
Fandroid745
e3066a1d7a
fix:added the username_claimed field
2025-10-05 18:59:04 +05:30
Abhyuday K Hegde
f0510a169a
Add support for WakaTime
2025-10-05 15:52:56 +05:30
manjushsh
738df6c362
chore: add error message to the codesandbox
2025-10-05 15:22:37 +05:30
Paul Pfeister
83a38db110
Merge pull request #2582 from dollaransh17/fix/boardgamegeek-false-positive
...
fix(sites): Update BoardGameGeek URL structure and detection method
2025-10-05 02:39:29 -04:00
dollaransh17
9e3448d992
fix(sites): So , Implemented BoardGameGeek using username validation API
...
- Added BoardGameGeek back using the new API endpoint suggested by @ppfeister
- Uses https://api.geekdo.com/api/accounts/validate/username?username={} for detection
- errorMsg checks for '"isValid":true' to detect valid usernames
- This approach avoids the previous issues with:
* HTML parsing returning false positives
* User API returning JSON with '[]' substrings that caused detection problems
- Successfully tested with both valid (blue) and invalid usernames
Thanks @ppfeister for the API suggestion and @akh7177 for the initial guidance
2025-10-05 11:59:41 +05:30
Fandroid745
017c08a45d
fix: Add error messages to BabyRu to prevent false positives
2025-10-05 10:53:59 +05:30
Paul Pfeister
cfcc82aaca
Merge pull request #2597 from sherlock-project/feat/multiple-types
...
Support multiple errorType checks
2025-10-04 17:21:26 -04:00
Paul Pfeister
0794e02b52
feat: support multiple errorTypes
2025-10-04 16:53:30 -04:00
Paul Pfeister
975965abed
Merge pull request #2589 from dollaransh17/fix/threads-false-positive
...
fix(sites): Fix Threads false positive detection
2025-10-04 15:44:04 -04:00
Paul Pfeister
a678bed154
Merge pull request #2587 from akh7177/remediate-cyberdefenders-fp
...
fix(sites): Remediate False Positives for CyberDefenders
2025-10-04 15:43:48 -04:00
Paul Pfeister
4ec6f1eec0
Merge pull request #2585 from akh7177/remediate-slideshare-fp
...
fix(sites): Remediate False Positive for SlideShare
2025-10-04 15:43:36 -04:00
dollaransh17
dc869852bc
fix(sites): Fix Threads false positive detection
...
Threads was showing false positives for non-existent users because
the error message detection was incorrect.
Updated errorMsg:
- Old: "<title>Threads</title>" (generic, matches valid pages too)
- New: "<title>Threads • Log in</title>" (specific to non-existent users)
When a user doesn't exist, Threads redirects to a login page with the
title "Threads • Log in". Valid user profiles have titles like
"Username (@username) • Threads, Say more".
Tested with:
- Invalid user (impossibleuser12345): Correctly not found
- Valid user (zuck): Correctly found
This fixes the false positive issue where non-existent Threads profiles
were being reported as found.
2025-10-04 17:22:50 +05:30
Abhyuday K Hegde
5cd769c2f4
Remediate False Positives for CyberDefenders
2025-10-04 15:12:20 +05:30
Abhyuday K Hegde
977ad5c1a4
Remediate False Positive for SlideShare
2025-10-04 14:48:37 +05:30
Abhyuday K Hegde
57a0ccef38
Remediate False Positive for Roblox
2025-10-04 14:30:40 +05:30
dollaransh17
94c013886a
fix(sites): Remove BoardGameGeek due to incompatible detection
...
BoardGameGeek cannot be reliably detected with Sherlock's current capabilities:
- Original HTML detection: Returns false positives
- API endpoint approach: The API returns status 200 for both valid and invalid users
- Invalid user: Returns exactly '[]'
- Valid user: Returns JSON containing '[]' substrings (e.g., "adminBadges":[])
Since Sherlock's 'message' errorType uses substring matching, it incorrectly
identifies valid users as "not found" when checking for '[]' in the response.
The site's API response format is fundamentally incompatible with Sherlock's
detection methods (message/status_code/response_url), so removal is the only
viable solution to prevent false positives and false negatives.
Addresses false positive issue originally reported in testing.
2025-10-04 11:33:27 +05:30
dollaransh17
c5e209d78e
fix(sites): Implement BoardGameGeek API detection as suggested
...
Using the API endpoint suggested by akh7177:
https://api.geekdo.com/api/users?username={}
However, there's an edge case where valid users contain empty arrays
in their JSON response (adminBadges[], userMicrobadges[], supportYears[])
which causes Sherlock's substring matching to incorrectly flag them
as 'not found' when looking for the '[]' error pattern.
The API correctly returns:
- Valid user: JSON object with user data (but contains [] substrings)
- Invalid user: Exactly '[]' (2 characters total)
This needs further refinement to distinguish between the exact '[]'
response vs JSON containing '[]' substrings.
2025-10-04 11:23:55 +05:30
dollaransh17
3e653c46b0
fix(sites): Remove BoardGameGeek - unreliable detection
...
BoardGameGeek returns identical pages for both existing and non-existing
users, making reliable username detection impossible with HTTP-based
methods. The site likely uses JavaScript to load user-specific content
dynamically.
2025-10-04 03:12:47 +05:30
dollaransh17
91f3b16993
fix(sites): Update BoardGameGeek URL structure and detection method
...
BoardGameGeek changed from /user/{} to /profile/{} URL structure.
Also updated from message to status_code detection as the site
no longer returns clear error messages for non-existent users.
2025-10-04 02:55:57 +05:30
obiwan04kanobi
0f3df0f4da
**PR description:**
...
This PR adds AWS Skills Profile to Sherlock’s supported sites in data.json. The configuration uses a unique substring (`shareProfileAccepted":false`) for reliable detection of non-existent usernames, addressing the challenge of JavaScript-rendered error messages.
- Site details and detection logic follow Sherlock’s contributing guidelines and Code of Conduct.
- No changes to core logic; only a new site entry.
- Reviewed for schema compliance and duplicate key cleanup as noted.
2025-10-03 13:46:53 +05:30
Paul Pfeister
1d2c4b134f
Merge pull request #2570 from shreyasNaik0101/fix/remediate-applediscussions
...
fix(sites): Remediate false positive for Apple Discussions
2025-10-02 20:30:57 -04:00
shreyasNaik0101
b245c462c9
fix(sites): Remediate false positive for Apple Discussions
2025-10-03 05:56:52 +05:30
shreyasNaik0101
876e58b159
fix(sites): Remediate false positive for Blitz Tactics
2025-10-03 05:45:43 +05:30
Paul Pfeister
66d9733da7
Merge pull request #2565 from shreyasNaik0101/fix/remediate-mydramalist
...
fix(sites): Remediate false positive for Mydramalist
2025-10-02 19:40:47 -04:00
Paul Pfeister
c55deab3a2
Merge pull request #2561 from shreyasNaik0101/fix/remediate-deviantart
...
fix(sites): Remediate false positive for DeviantArt
2025-10-02 19:37:00 -04:00
Paul Pfeister
edcb697793
Merge pull request #2564 from shreyasNaik0101/fix/remediate-allmylinks
...
fix(sites): Remediate false positive for AllMyLinks
2025-10-02 19:36:43 -04:00
shreyasNaik0101
d314d75db1
fix(sites): Remediate false positive for Mydramalist
2025-10-03 04:43:05 +05:30
shreyasNaik0101
c89a52caf7
fix(sites): Remediate false positive for AllMyLinks
2025-10-03 04:25:46 +05:30
shreyasNaik0101
779d4c33f4
fix: Remove username_unclaimed as requested
2025-10-03 03:55:03 +05:30
shreyasNaik0101
355bfbd328
fix(sites): Remediate false positive for DeviantArt
2025-10-03 00:42:07 +05:30
JongMyeong HAN
7b3632bdad
Add comment to site 'namuwiki'
...
Co-authored-by: Paul Pfeister <code@pfeister.dev>
2025-10-03 04:00:41 +09:00
Ethan Zhang
4fe41f09ff
Removed duplicate Bluesky entry in data.json
2025-10-02 12:42:47 +10:00
JongMyeong HAN
cd7c52e4fa
Feat: Add tistory
2025-10-01 00:44:55 +09:00
JongMyeong HAN
86140af50e
feat: Add SOOP
2025-10-01 00:44:02 +09:00
JongMyeong HAN
e5cd5e5bfe
feat: Add namuwiki
2025-10-01 00:43:21 +09:00
JongMyeong HAN
dc89f1cd27
feat: Add dcinside
2025-10-01 00:41:23 +09:00
Paul Pfeister
37b30602fd
Merge branch 'master' into Issue#2442
2025-09-20 20:12:21 -04:00
Paul Pfeister
7afdee4c58
fix: incorrect method
2025-09-20 20:09:44 -04:00
Paul Pfeister
d4d8e01e31
chore: remove dead site
...
Fixes : #2433
2025-09-20 19:45:34 -04:00
Paul Pfeister
dc61cdc7a4
chore: set request method
2025-09-20 18:10:33 -04:00
Paul Pfeister
9882478fb5
feat: add instapaper
2025-09-20 15:05:44 -04:00
My Name
9560355a7c
Added Laracast support
2025-09-18 10:23:09 +04:00
Davis
1b9f823cef
Merge branch 'master' into add/platzi
2025-09-14 16:12:09 -05:00
Moshi
f0f37d841c
bugfix: update platzi
...
- "username_claimed" is now set to "freddier" (the most popular user, just in case)
- error code and request method are now explicit.
- added trailing slash for consistency
2025-09-14 16:03:32 -05:00
Pierre-Yves Lapersonne
58b20db9f1
feat: add `outgress.com` in supported web sites ( #2426 )
...
Closes #2426
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:21:33 -04:00
Pierre-Yves Lapersonne
a98a113a4b
feat: add `opencollective.com` in supported web sites ( #2430 )
...
Closes #2430
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:21:32 -04:00
Pierre-Yves Lapersonne
164d01d163
feat: add `linuxfr.org` in supported web sites ( #2427 )
...
Closes #2427
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:21:32 -04:00
Pierre-Yves Lapersonne
ddd94474b8
feat: add `pixelfed.social` in supported web sites ( #2425 )
...
Closes #2425
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:21:32 -04:00
Pierre-Yves Lapersonne
541b023b7f
feat: add `mamot.fr` in supported web sites ( #2424 )
...
Closes #2424
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:21:32 -04:00
Pierre-Yves Lapersonne
9b502d9245
feat: new targets (9), minor cleanup
...
Closes #2421 (added support for site)
Closes #2422 (added support for site)
Closes #2423 (added support for site)
Closes #2424 (added support for site)
Closes #2425 (added support for site)
Closes #2426 (added support for site)
Closes #2427 (added support for site)
Closes #2429 (added support for site)
Closes #2430 (added support for site)
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
Singed-off-by: Paul Pfeister <code@pfeister.dev>
2025-09-14 02:16:16 -04:00
Pierre-Yves Lapersonne
b9c352fb7c
style: clean file by removing useless whitespace
...
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:14:53 -04:00
Pierre-Yves Lapersonne
48ef668e1e
feat: add `write.as` in supported web sites ( #2422 )
...
Closes #2422
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:14:53 -04:00
Pierre-Yves Lapersonne
481c39ace3
feat: add `speakerdeck.com` in supported web sites
...
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:14:52 -04:00
Pierre-Yves Lapersonne
6b9305250d
feat: add `framapiaf.org` in supported web sites
...
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:14:52 -04:00
Pierre-Yves Lapersonne
87bd15f927
style: remove useless empty line
...
Signed-off-by: Pierre-Yves Lapersonne <dev@pylapersonne.info>
2025-09-14 02:14:52 -04:00
Paul Pfeister
db23ae933f
Merge pull request #2417 from jasontenpenny/master
...
Sort Bluesky Alphabetically
2025-09-14 01:42:14 -04:00
MR-VL
d3f4c65459
remove trailing comma for cashapp breaking TOX
2025-09-13 18:15:23 -05:00
MR-VL
2504f238e5
Merge branch 'master' into master
2025-09-13 17:39:57 -05:00
Paul Pfeister
9646055560
fix(manifest): schema non-compliance
2025-09-13 18:30:08 -04:00
Paul Pfeister
80d4abae34
Merge pull request #2446 from S1lvus/master
...
Add support for CashApp
2025-09-13 18:25:55 -04:00
Paul Pfeister
19ae05d68a
Merge pull request #2460 from rskbansal/fix_minecraft
...
Fixed Minecraft
2025-09-13 18:08:53 -04:00
Paul Pfeister
6cc4d9e0c7
Merge branch 'master' into feat/add-playstrategy-support
2025-09-13 18:04:18 -04:00
Paul Pfeister
1ddfc08d7d
Merge pull request #2484 from MaxwellOldshein/feat/add-blitz-tactics-support
...
Fix Issue #2474 : Added support for Blitz Tactics
2025-09-13 18:02:12 -04:00
Paul Pfeister
cca68bb9ab
Merge pull request #2513 from akamayu-ouo/site/plurk
...
Add support for Plurk
2025-09-13 17:49:31 -04:00
[Tulsi Shetty]
dafcaec192
feat: Tumblr added
2025-08-16 18:42:19 +05:30
akamayu-ouo
3c9eda75e9
Add Plurk
2025-08-09 14:08:56 +00:00
Moshi
8635d68864
add: platzi.com
2025-07-16 14:48:16 -05:00
MR-VL
1e12c3f7a6
Remove TorrentGalaxy
2025-07-06 16:35:31 -05:00
MR-VL
9e40e0a0f4
Add support for Pychess
2025-07-06 16:27:59 -05:00
manjushsh
4706323976
data: add hive blog
2025-06-27 20:05:01 +05:30
manjushsh
4721c7f553
data: Add code sandboxio
2025-06-27 19:42:23 +05:30
Maxwell Oldshein
c82c00650a
Add Blitz Tactics support
2025-06-26 15:26:57 -04:00
Maxwell Oldshein
9e54e68da5
Add Playstrategy support
2025-06-26 15:10:44 -04:00
Rhythm Bansal
f599ae5ff1
fixed minecraft
2025-04-30 02:23:06 +05:30
kareemeldahshoury
de81f38622
Fix Issue #2442 : Added support for Aparat
2025-04-29 15:25:31 -05:00
S1lvus
e0f184f263
Removed extra spaces
2025-04-07 20:31:17 -04:00
S1lvus
6c1623a3ad
Added CashApp into the site list.
...
This adds username search for the CashApp financial platform.
2025-04-07 20:28:28 -04:00
Jason Tenpenny
5e3828882e
Sort Bluesky Alphabetically
...
moved the Bluesky config to its proper alphabetical location so it can be found easier
2025-03-02 22:40:32 -06:00
Paul Pfeister
9be92b9834
Merge pull request #2404 from MR-VL/master
...
Remove ask.fm + fix instagram middleware
2025-02-17 00:13:21 -05:00
Paul Pfeister
53cbd332ca
chore: cleanup dead targets
2025-02-17 00:07:18 -05:00
Paul Pfeister
2ff2836159
chore: document unusual behavior
...
Target will fail to provide a response for unclaimed queries rather than an error
2025-02-16 23:54:29 -05:00
Paul Pfeister
0d008b109e
fix: v0 f+
2025-02-16 23:33:04 -05:00
MR-VL
a29faa8288
Fix instagram
2025-02-04 21:37:13 -06:00
MR-VL
809f8ba6c4
Remove askfm
2025-02-04 21:26:04 -06:00
Paul Pfeister
1912cbdea4
fix: manifest encoding error on Windows
2025-02-03 03:38:17 -05:00
Paul Pfeister
9eb100c819
Merge branch 'master' into patch-1
2025-02-03 03:00:53 -05:00
Paul Pfeister
86387d0baf
fix: validation error message
2025-02-03 03:00:04 -05:00
Paul Pfeister
c6f9e2eac9
fix: validation method typo
2025-02-03 02:54:12 -05:00
Paul Pfeister
73df548532
fix: twitter f+
2025-02-03 02:53:35 -05:00
Paul Pfeister
ae87699824
fix: fiverr/babyru f+
2025-02-03 02:51:22 -05:00
Paul Pfeister
8568ef7d99
fix: twitch f+
2025-02-03 02:37:06 -05:00
Paul Pfeister
c6f7a99b1c
fix: tldr legal f+
2025-02-03 02:01:14 -05:00
Paul Pfeister
b5bd536e6b
fix: slideshare f+
2025-02-03 01:55:46 -05:00
Paul Pfeister
d029af3e89
fix: shpock f+
2025-02-03 01:51:54 -05:00
Paul Pfeister
af2bb98901
fix: producthunt f+
...
Co-authored-by: Regan Bell <reganbell@gmail.com>
2025-02-03 00:51:04 -05:00
Paul Pfeister
68c4edf8b6
fix: giphy f+
2025-02-03 00:40:05 -05:00
Paul Pfeister
300d6eda21
fix: airpilot f+
...
Seems to be defunct.
2025-02-03 00:35:58 -05:00
Paul Pfeister
33b567d453
fix: 8tracks f+
2025-02-03 00:35:12 -05:00
Paul Pfeister
c779d21c13
Merge pull request #2292 from Pasanlaksitha/master
...
Add Hugging Face data.json
2025-02-03 00:26:17 -05:00
Paul Pfeister
d818c5ebf2
Merge pull request #2312 from SOGeKING-NUL/master
...
Adding DigitalSpy
2025-02-03 00:22:26 -05:00
Paul Pfeister
072b581f98
Merge pull request #2394 from ibnaleem/bluesky
...
Add Bluesky Support
2025-02-02 23:48:46 -05:00
Paul Pfeister
2de353d8d6
fix: over-restrictive fail cond
2025-02-02 23:45:27 -05:00
Paul Pfeister
ca2f19ae52
fix: EOF
2025-02-02 23:43:50 -05:00
Paul Pfeister
b8bdfd8601
Merge pull request #2381 from brantonb/master
...
Add support for omg.lol
2025-02-02 23:42:42 -05:00
Paul Pfeister
a985a0891e
Merge pull request #2383 from brantonb/strava
...
Fix Strava false positives
2025-02-02 23:38:30 -05:00
Paul Pfeister
3a7384e5f1
fix: pypi user-friendly url
2025-02-02 23:27:57 -05:00
ibnaleem
ca17c39172
add bsky.app
2025-01-20 15:02:43 +00:00
joeyagreco
55f0628c2b
fixed pypi url
2025-01-19 14:39:45 -05:00
joeyagreco
276167be9c
Revert "fixed pypi url"
...
This reverts commit d87f4f2b60 .
2025-01-19 14:37:36 -05:00
joeyagreco
d87f4f2b60
fixed pypi url
2025-01-19 14:35:08 -05:00
Branton Boehm
1684fbf866
Fix Strava false positives
2024-12-25 18:21:44 -08:00
Branton Boehm
c0c5d829e2
Add support for omg.lol
2024-12-25 12:34:41 -08:00
Utsav Jana
979f17cf3b
add the regexCheck for DigitalSpy
2024-12-06 19:14:39 +05:30
Utsav Jana
fe6e2e57c3
Adding DigitalSpy
2024-12-06 19:13:25 +05:30
Paul Pfeister
0f395d037b
fix: F+s
2024-11-13 16:53:40 -05:00
Paul Pfeister
98fbd525ee
Fix #2355
...
(Regression introduced by #1520 )
2024-11-11 20:33:27 -05:00
Paul Pfeister
18bae485ae
Merge pull request #2287 from ntexe/master
...
fix #2242
2024-11-11 20:03:17 -05:00
Paul Pfeister
6f3b89c98a
Merge branch 'master' into master
2024-11-11 19:45:32 -05:00
Paul Pfeister
0b7d925b50
fix: F-/F+ Generic
2024-11-11 19:44:14 -05:00
Paul Pfeister
cf393b8fec
Merge pull request #2339 from bytexenon/archive_org_fix
...
fix: add additional error message check for archive.org downtime
2024-11-11 16:55:50 -05:00
Paul Pfeister
6fa603981d
Remove bodybuilding[.]com forum
...
Forum defunct. Not added to removed list as the site will no longer
exist.
2024-11-04 20:46:03 -05:00
Paul Pfeister
e94e00af53
Revert "Merge pull request #2340 from mikebgrep/master"
...
This reverts commit 185478cf8e , reversing
changes made to 3804fd9a91 .
Some patterns seem to be incorrect
2024-11-01 20:33:39 -04:00
Paul Pfeister
98d8120ccd
Merge branch 'master' into master
2024-11-01 20:21:31 -04:00
Paul Pfeister
3804fd9a91
Merge pull request #2335 from rskbansal/master
...
Fixed Twitter(X)
2024-11-01 19:57:37 -04:00
Paul Pfeister
bd46baa639
fix: 8tracks
...
Use username availability endpoint from regflow with predictable
response language (en-us).
Referenced by #2318
Fixes #2332
Closes #2333 (removes target rather than fixes)
2024-11-01 19:44:48 -04:00
Paul Pfeister
c64e795447
Merge pull request #2291 from Suramyavns/master
...
fixed speedrun site support #2288
2024-11-01 05:02:35 -04:00
Paul Pfeister
0e5769154c
Merge pull request #2323 from Nuung/master
...
Add support for velog
2024-11-01 04:50:06 -04:00
Paul Pfeister
d4b57510f1
Merge pull request #2328 from yuzicodes/add-rarible
...
Add site rarible.com
2024-11-01 04:42:54 -04:00
Aalim Sheikh
b06fb4e425
Update sherlock_project/resources/data.json
...
Co-authored-by: Paul Pfeister <code@pfeister.dev>
2024-11-01 14:09:04 +05:30
Paul Pfeister
43e543acae
Merge pull request #2326 from alokranjan609/librarything-detection-fix
...
Change the errorMsg for Librarything
2024-11-01 04:29:58 -04:00
Paul Pfeister
821062bb81
Merge pull request #2310 from nktkhndlwl/vlr-support
...
add VLR.gg support
2024-11-01 04:05:39 -04:00
Paul Pfeister
7cd9f2acb0
Merge pull request #2283 from gtkacz/2248-exophase_support
...
Adding support for exophase via `data.json` for #2248
2024-11-01 04:00:47 -04:00
Paul Pfeister
7b7a0d2c8e
Merge pull request #2316 from MR-VL/master
...
Add support for Atcoder
2024-11-01 03:39:28 -04:00
Lucas Terracino
bbe9e93164
Add support for Tiendanube
2024-10-22 14:38:09 -03:00
Lucas Terracino
beb57d2e49
Add support for Empretienda
2024-10-22 14:38:01 -03:00
Lucas Terracino
a03aa3157f
Add support for BoardGameGeek
2024-10-22 14:28:14 -03:00