Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
We had a recent issue with crunchyroll.com/evidon and GPC.
We block GPC by default (also DDG, duckduckgo/privacy-configuration#1422 and Firefox Nightly/Enhanced Protection)
We implemented a fix to prevent _evidon_consent_ls local item being set by blocking ||c.evidon.com/dg/dg.js$script easylist/easylist@2633080
The issue currently is, if this local stoage item
_evidon_consent_ls_[randomchars]
is still set for exisiting users, it will still cause GPC login issues until the user manually clears this specific stoage item.If possible to allow to remove a name based on wildcard (or regex). Given its only clearing data, doesn't look like a privacy issue?
Something like this:
sso.crunchyroll.com##+js(set-local-storage-item, _evidon_consent_ls_*, $remove$)
or via regex
crunchyroll.com##+js(set-local-storage-item, /_evidon_consent_ls_\d+/, $remove$)
As an interim; https://github.com/brave/adblock-resources/blob/test-delete-local-storage-script/resources/brave-delete-from-local-storage.js
Beta Was this translation helpful? Give feedback.
All reactions