-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Requests matching against the deny list are blocked #7
Comments
For reference: headless automated testing seems to be indeed impossible these days: microsoft/playwright#2172 |
Lost some time in here trying to test things locally (both Hence using the great https://itty.bitty.site/ for a quick |
🎉 This issue has been resolved in version 1.1.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
🎉 This issue has been resolved in version 1.2.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
First real release of a usable extension! 🎉
Acceptance criteria:
AAC, I want to access a site with a known tracker and not be tracked
Thoughts on performance
For this MVP we'll probably will go with a simple Set (
<= O(n)
as per javascript Set specification).But for the future we need to consider the best data structure and matching algorithm for the deny / allow lists. Imaging they could get pretty huge, we need to consider performing cases like the ones below. But even then we should confirm those assumptions with load tests and some data gathering about how big those lists can realistically get.
The text was updated successfully, but these errors were encountered: