| OLD | NEW |
| 1 /* | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
| 2 * This file is part of the Adblock Plus build tools, | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 * Copyright (C) 2006-2014 Eyeo GmbH | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 4 * | |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | |
| 6 * it under the terms of the GNU General Public License version 3 as | |
| 7 * published by the Free Software Foundation. | |
| 8 * | |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 12 * GNU General Public License for more details. | |
| 13 * | |
| 14 * You should have received a copy of the GNU General Public License | |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
| 16 */ | |
| 17 | 4 |
| 18 require.scopes.info = { | 5 require.scopes.info = { |
| 19 get addonID() | 6 get addonID() |
| 20 { | 7 { |
| 21 return chrome.i18n.getMessage("@@extension_id"); | 8 return chrome.i18n.getMessage("@@extension_id"); |
| 22 }, | 9 }, |
| 23 addonName: {{metadata.get('general', 'basename')|json}}, | 10 addonName: {{metadata.get('general', 'basename')|json}}, |
| 24 addonVersion: {{version|json}}, | 11 addonVersion: {{version|json}}, |
| 25 addonRoot: "", | 12 addonRoot: "", |
| 26 | 13 |
| 27 application: {{type|json}}, | 14 application: {{type|json}}, |
| 28 get applicationVersion() | 15 get applicationVersion() |
| 29 { | 16 { |
| 30 {%- if type == 'opera' %} | 17 {%- if type == 'opera' %} |
| 31 var match = /\bOPR\/(\S+)/.exec(navigator.userAgent); | 18 var match = /\bOPR\/(\S+)/.exec(navigator.userAgent); |
| 32 return (match ? match[1] : "0"); | 19 return (match ? match[1] : "0"); |
| 33 {%- else %} | 20 {%- else %} |
| 34 return this.platformVersion; | 21 return this.platformVersion; |
| 35 {%- endif %} | 22 {%- endif %} |
| 36 }, | 23 }, |
| 37 | 24 |
| 38 platform: "chromium", | 25 platform: "chromium", |
| 39 get platformVersion() | 26 get platformVersion() |
| 40 { | 27 { |
| 41 var match = /\bChrome\/(\S+)/.exec(navigator.userAgent); | 28 var match = /\bChrome\/(\S+)/.exec(navigator.userAgent); |
| 42 return (match ? match[1] : "0"); | 29 return (match ? match[1] : "0"); |
| 43 } | 30 } |
| 44 }; | 31 }; |
| OLD | NEW |