LEFT | RIGHT |
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"; | 5 "use strict"; |
6 | 6 |
7 let platform = "chromium"; | |
8 let platformVersion = null; | 7 let platformVersion = null; |
9 let application = null; | 8 let application = null; |
10 let applicationVersion; | 9 let applicationVersion; |
11 | 10 |
12 let regexp = /(\S+)\/(\S+)(?:\s*\(.*?\))?/g; | 11 let regexp = /(\S+)\/(\S+)(?:\s*\(.*?\))?/g; |
13 let match; | 12 let match; |
14 | 13 |
15 while (match = regexp.exec(navigator.userAgent)) | 14 while (match = regexp.exec(navigator.userAgent)) |
16 { | 15 { |
17 let app = match[1]; | 16 let app = match[1]; |
(...skipping 27 matching lines...) Expand all Loading... |
45 applicationVersion = platformVersion; | 44 applicationVersion = platformVersion; |
46 } | 45 } |
47 | 46 |
48 | 47 |
49 exports.addonName = {{ basename|json }}; | 48 exports.addonName = {{ basename|json }}; |
50 exports.addonVersion = {{ version|json }}; | 49 exports.addonVersion = {{ version|json }}; |
51 | 50 |
52 exports.application = application; | 51 exports.application = application; |
53 exports.applicationVersion = applicationVersion; | 52 exports.applicationVersion = applicationVersion; |
54 | 53 |
55 exports.platform = platform; | 54 exports.platform = "chromium"; |
56 exports.platformVersion = platformVersion; | 55 exports.platformVersion = platformVersion; |
LEFT | RIGHT |