Let's say I have the following img element in a page that has been created by some unknown Javascript:
<img src="blob:https://examplesite.com/path-to-blob">
can I use the src attribute to download the file associated with this img tag?
I found Read data from BLOB URL in Javascript, but that question is in a different context.
I tried fetch("blob:https://examplesite.com/path-to-blob") in the Chrome DevTools, but I got net::ERR_FILE_NOT_FOUND.
Is there anything I can do to access the data associated with this img tag?
blobprefix and usingfetch("https://drive.google.com/a6a5ddda-3d77-4065-a59f-acddd1cdb3b7")gives a 404 error. Accessing the URL directly also gives the same "Not Found Error 404" error, which makes sense, because from my reading a blob URL is not a real URL.createObjectURL()URL.createObjectURL()and are only valid for the lifetime of thedocumentthat created them (or untilrevokeObjectURL()is called). Where exactly does this URL come from?