 Issue 29458601:
  Issue 5315 - Add support for Microsoft Edge  (Closed)
    
  
    Issue 29458601:
  Issue 5315 - Add support for Microsoft Edge  (Closed) 
  | Index: ext/common.js | 
| =================================================================== | 
| --- a/ext/common.js | 
| +++ b/ext/common.js | 
| @@ -19,6 +19,13 @@ | 
| (function() | 
| { | 
| + // Both Edge and Mozilla Web Extensions use the namespace | 
| + // 'browser' instead of 'chrome'. Edge has chrome namespace defined, | 
| + // but only with one property: 'app'. | 
| + if (typeof chrome == "undefined" || | 
| 
kzar
2017/06/22 11:23:38
Nit: Personally I would have just done `if (!chrom
 
Oleksandr
2017/06/22 13:34:59
Done.
 | 
| + typeof chrome.extension == "undefined") | 
| + window.chrome = window.browser; | 
| + | 
| window.ext = {}; | 
| let EventTarget = ext._EventTarget = function() |