OLD | NEW |
1 /* | 1 /* |
2 * This file is part of the Adblock Plus build tools, | 2 * This file is part of the Adblock Plus build tools, |
3 * Copyright (C) 2006-2013 Eyeo GmbH | 3 * Copyright (C) 2006-2013 Eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 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 | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
13 * | 13 * |
14 * You should have received a copy of the GNU General Public License | 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/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
16 */ | 16 */ |
17 | 17 |
18 { | 18 { |
19 "manifest_version": 2, | 19 "manifest_version": 2, |
20 "name": "__MSG_name__{% if experimentalAPI %} experimental build{% endif %}", | 20 "name": "__MSG_name__{% if experimentalAPI %} experimental build{% endif %}", |
21 "description": "__MSG_description__", | 21 "description": "__MSG_description_{{ type }}__", |
22 "default_locale": "en_US", | 22 "default_locale": "en_US", |
23 "version": {{version|json}}, | 23 "version": {{version|json}}, |
24 | 24 |
25 {%- if metadata.has_section('compat') and metadata.has_option('compat', 'chrom
e') %} | 25 {%- if metadata.has_section('compat') and metadata.has_option('compat', 'chrom
e') %} |
26 "minimum_chrome_version": {{metadata.get('compat', 'chrome')|json}}, | 26 "minimum_chrome_version": {{metadata.get('compat', 'chrome')|json}}, |
27 {%- endif %} | 27 {%- endif %} |
28 | 28 |
29 {%- if not releaseBuild %} | 29 {%- if not releaseBuild %} |
30 "update_url": "https://adblockplus.org/devbuilds/ | 30 "update_url": "https://adblockplus.org/devbuilds/ |
31 {{- metadata.get('general', 'basename') -}} | 31 {{- metadata.get('general', 'basename') -}} |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 {%- if contentScripts %} | 78 {%- if contentScripts %} |
79 "content_scripts": {{contentScripts|json}}, | 79 "content_scripts": {{contentScripts|json}}, |
80 {%- endif %} | 80 {%- endif %} |
81 | 81 |
82 {%- if webAccessible %} | 82 {%- if webAccessible %} |
83 "web_accessible_resources": {{webAccessible|json}}, | 83 "web_accessible_resources": {{webAccessible|json}}, |
84 {%- endif %} | 84 {%- endif %} |
85 | 85 |
86 "_dummy": false | 86 "_dummy": false |
87 } | 87 } |
OLD | NEW |