jfroelich / rss-reader

A simple Chrome extension for viewing RSS feeds
Other
10 stars 0 forks source link

Improve the privacy of fetch-image-element #764

Open jfroelich opened 5 years ago

jfroelich commented 5 years ago

The current implementation uses the HTMLImageElement.src tactic to fetch the image. Unfortunately this means the browser composes its network request internally with no fetch options, and unfortunately the browser loves sharing all the information.

Avoid sending cookies. Probably need to use fetch api. Concerned about perf and complexity, feels like reinventing the wheel