Index: ext/background.js |
=================================================================== |
--- a/ext/background.js |
+++ b/ext/background.js |
@@ -701,7 +701,10 @@ |
{ |
chrome.windows.getLastFocused(win => |
{ |
- let optionsUrl = chrome.extension.getURL("options.html"); |
+ // NOTE: we expect this else branch to run only on Edge. |
Sebastian Noack
2017/06/07 12:05:25
Well, if we should ever merge this upstream it wil
Oleksandr
2017/06/07 12:09:29
From what I understand only Edge does not support
|
+ // We are not using extension.getURL here because of the Edge issue: |
+ // https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/10276332/ |
+ let optionsUrl = "options.html"; |
let queryInfo = {url: optionsUrl}; |
// extension pages can't be accessed in incognito windows. In order to |