I'm developing an extension with my own icons for the extension button in the toolbar of chrome, depending on the state of my extension.
While doing this, I get sometimes a bug inside the DevTools “Laden von Abrufen beendet: GET …”, (English: “Loading fetches finished: GET ….”) followed by the URL of the icon starting with “chrome-extension://myid/path/icon_16.png”.
Inside the manifest.json file I have this:
"web_accessible_resources": [{
"matches": ["*://*/*"],
"resources": ["*.*"]
}]
Why can Chrome not access to these URLs sometime, even sometimes it works as well?