OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 {# This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 file, You can obtain one at http://mozilla.org/MPL/2.0/. -#} |
4 | 4 |
5 "use strict"; | |
6 | |
7 exports.addonName = {{ basename|json }}; | |
8 exports.addonVersion = {{ version|json }}; | |
9 | |
10 exports.application = "unknown"; | 5 exports.application = "unknown"; |
11 exports.applicationVersion = "0"; | 6 exports.applicationVersion = "0"; |
12 | |
13 exports.platform = "gecko"; | 7 exports.platform = "gecko"; |
14 exports.platformVersion = "0"; | 8 exports.platformVersion = "0"; |
15 | 9 |
16 let match = /\brv:(\d+(?:\.\d+)?)\b/.exec(navigator.userAgent); | 10 let match = /\brv:(\d+(?:\.\d+)?)\b/.exec(navigator.userAgent); |
17 if (match) | 11 if (match) |
18 exports.platformVersion = match[1]; | 12 exports.platformVersion = match[1]; |
19 | 13 |
20 browser.runtime.getBrowserInfo().then(browserInfo => | 14 browser.runtime.getBrowserInfo().then(browserInfo => |
21 { | 15 { |
22 exports.application = browserInfo.name.toLowerCase(); | 16 exports.application = browserInfo.name.toLowerCase(); |
23 exports.applicationVersion = browserInfo.version; | 17 exports.applicationVersion = browserInfo.version; |
24 }); | 18 }); |
OLD | NEW |