| Index: templates/chromeInfo.js.tmpl | 
| =================================================================== | 
| --- a/templates/chromeInfo.js.tmpl | 
| +++ b/templates/chromeInfo.js.tmpl | 
| @@ -1,38 +1,30 @@ | 
| /* This Source Code Form is subject to the terms of the Mozilla Public | 
| * License, v. 2.0. If a copy of the MPL was not distributed with this | 
| * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 
|  | 
| "use strict"; | 
|  | 
| -let platform = "chromium"; | 
| let platformVersion = null; | 
| let application = null; | 
| let applicationVersion; | 
|  | 
| let regexp = /(\S+)\/(\S+)(?:\s*\(.*?\))?/g; | 
| let match; | 
|  | 
| while (match = regexp.exec(navigator.userAgent)) | 
| { | 
| let app = match[1]; | 
| let ver = match[2]; | 
|  | 
| if (app == "Chrome") | 
| { | 
| platformVersion = ver; | 
| } | 
| -  else if (app == "Edge") | 
| -  { | 
| -    platform = "edgehtml"; | 
| -    platformVersion = ver; | 
| -    application = "edge"; | 
| -    applicationVersion = "0"; | 
| -  } | 
| else if (app != "Mozilla" && app != "AppleWebKit" && app != "Safari") | 
| { | 
| // For compatibility with legacy websites, Chrome's UA | 
| // also includes a Mozilla, AppleWebKit and Safari token. | 
| // Any further name/version pair indicates a fork. | 
| application = app == "OPR" ? "opera" : app.toLowerCase(); | 
| applicationVersion = ver; | 
| } | 
| @@ -54,10 +46,10 @@ | 
|  | 
|  | 
| exports.addonName = {{ basename|json }}; | 
| exports.addonVersion = {{ version|json }}; | 
|  | 
| exports.application = application; | 
| exports.applicationVersion = applicationVersion; | 
|  | 
| -exports.platform = platform; | 
| +exports.platform = "chromium"; | 
| exports.platformVersion = platformVersion; | 
|  |