mirror of
https://github.com/laylavish/uBlockOrigin-HUGE-AI-Blocklist.git
synced 2026-08-06 02:12:35 -04:00
[PR #334] Changed * to $ to avoid blocking more sites then wanted. #407
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?
Original Pull Request: https://github.com/laylavish/uBlockOrigin-HUGE-AI-Blocklist/pull/334
State: closed
Merged: No
Hello i saw an issue (#332) from @TheWitheredStriker and i think i have a fix for it.
I think the issue is that in for example:
google.com##a[href*="story.com"]:upward(2):remove()
the * in [href*="story.com"] takes all text before and including story.com and that includes alternatehistory.com
changing the * to an $ makes sure it only include strings that exactly ends in 'story.com'
see issue #332 for details