privacy-tech-lab / privacy-pioneer

Privacy browser extension for analyzing web traffic of visited websites
https://www.privacytechlab.org/
Other
22 stars 1 forks source link

Add Beacon API to URL filter #580

Closed dadak-dom closed 1 week ago

dadak-dom commented 2 weeks ago

This should fix the discrepancies that we were seeing between runs on the crawler. Turns out that our HTTP request listener was filtering out requests that were initiated using the Beacon API (as opposed to XHR or Fetch). Certain requests would occasionally use Fetch on one run, but Beacon on the other, and so the extension would miss the latter requests completely. This should be completely fixed now.

SebastianZimmeck commented 2 weeks ago

Excellent work, @dadak-dom!