I have a chrome extension that runs an injection script on certain pages.
I'd like to grab the images from a page when the user lands there, and push the images to remote storage w/o doing another round-trip to the page's image host.
Is this possible?
I assume the browser stores the images temporarily in cache, but it's not clear from the docs how to access those images.
ETA: thanks, I'm familiar with b64 encoding an image using canvas. Unfortunately every snippet I've found to do that relies on the browser to determine whether the img comes from cache or the server, & that's not what I'm aiming for.