I have a chrome extension that creates an object URL from a blob of data: window.URL.createObjectURL(blob);
It returns a URL such as: blob:chrome-extension://igilfmkkaffffeeigpidagfgmalaofcb/8b81c1e1-1492-4c36-bec8-537e816abf88
.
I want to access this blob of data in an external website (not a chrome extension). Is this possible or do I have to use the file system API? When I currently try to do it I get a net::ERR_FILE_NOT_FOUND
.
My manifest has this key: "web_accessible_resources": ["*"]
Website A content script -> Background Page create blob -> Website B use blob