You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v3.9.0 introduced a crx:// protocol to serve extension icons. If the icons are loaded in a session separate from where the extensions are loaded, they will fail with net::ERR_UNKNOWN_URL_SCHEME.
A protocol is registered to a specific Electron session object. If you don't specify a session, then your protocol will be applied to the default session that Electron uses.
Registering the protocol when the remote session is interested in receiving browserAction updates is too late and would require the page to be reloaded.
This bug may be what's causing a test to fail:
not ok 17 chrome.browserAction <browser-action-list> element lists actions in remote partition
expected [] to deeply equal [ 'admpllddodedaonjnppghnfjboamdmfn' ]
AssertionError: expected [] to deeply equal [ 'admpllddodedaonjnppghnfjboamdmfn' ]
at Context.<anonymous> (spec/chrome-browserAction-spec.ts:212:36)
The text was updated successfully, but these errors were encountered:
v3.9.0 introduced a
crx://
protocol to serve extension icons. If the icons are loaded in a session separate from where the extensions are loaded, they will fail withnet::ERR_UNKNOWN_URL_SCHEME
.Electron's
protocol
API is unique to each session.Registering the protocol when the remote session is interested in receiving browserAction updates is too late and would require the page to be reloaded.
This bug may be what's causing a test to fail:
The text was updated successfully, but these errors were encountered: