mirror of
https://github.com/laylavish/uBlockOrigin-HUGE-AI-Blocklist.git
synced 2026-08-06 02:12:35 -04:00
[GH-ISSUE #158] [href*="story.com"] is over-eager. #92
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @c-massie on GitHub (May 6, 2025).
Original GitHub issue: https://github.com/laylavish/uBlockOrigin-HUGE-AI-Blocklist/issues/158
This filter is meant to remove
story.com, but removes any websites whose URLs containstory.com, e.g. anything ending in "story", "history", etc.e.g. it blocks
maplestory.com,workingclasshistory.com,history.com, etc.Lines 604 and 2397 of
list.txt.This can be fixed by replacing the entries for
[href*="story.com"]with:is([href*=".story.com"], [href*="//story.com"])Given that the
[href*="domain.com"]pattern is used throughout, this may apply to other sites.