Comment on Google to weaken ad blockers on Chrome in a push for security
AProfessional@lemmy.world 11 months agoHow the WebRequest API works is:
- Network process downloads data
- Sent to the WebExtension (delay #1)
- Extension runs arbitrary JavaScript (Slow to very slow)
- Results eventually make it to the WebProcess where it belongs.
This is slow and will always be. Their change to remove blocking turns step 2/3 into a copy of the data, not a blocking call.
Now an ad can be slower, just by more data or bad JS. But that isn’t Googles concern because they sell those ads.
TheDarkKnight@lemmy.world 11 months ago
Ahhhh gotcha, thanks!