Inside a page, I've injected iframe and I'm using `URL.createObjectURL(blob)` to create link for a blob and then send it to the parent page, but the page refuses to load it:
Not allowed to load local resource: blob:chrome-extension://cinghknmlglhejjkhiofgojmfdcihfnb/adbf449f-0bbc-4bc3-afa7-dc46414e4b8c
I guess I need to add some wild card into the `web_accessible_resources` list but how?
I've tried these, but it won't work:
```
"web_accessible_resources": [
{
"resources": [
"*://*/*",
"blob:*",
"/blob:*",
"/blob*",
"*",
"image_fetcher/image_fetcher.html",
"image_fetcher/image_fetcher.js"
],
"matches": [ "*://*/*" ],
"use_dynamic_url": true
}
],
```