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 { | 5 { |
6 "manifest_version": 2, | 6 "manifest_version": 2, |
7 {%- if releaseBuild %} | 7 {%- if releaseBuild %} |
8 "name": "__MSG_name__", | 8 "name": "__MSG_name_releasebuild__", |
9 {%- else %} | 9 {%- else %} |
10 "name": "__MSG_name_devbuild__", | 10 "name": "__MSG_name_devbuild__", |
11 {%- endif %} | 11 {%- endif %} |
12 | 12 |
13 "short_name": "__MSG_name__", | 13 "short_name": "__MSG_name__", |
14 "description": "__MSG_description__", | 14 "description": "__MSG_description__", |
15 "default_locale": "en_US", | 15 "default_locale": "en_US", |
16 "version": {{version|json}}, | 16 "version": {{version|json}}, |
17 "author": {{metadata.get('general', 'author')|json}}, | 17 "author": {{metadata.get('general', 'author')|json}}, |
18 | 18 |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 "options_page": {{metadata.get('general', 'options')|json}}, | 90 "options_page": {{metadata.get('general', 'options')|json}}, |
91 {%- endif %} | 91 {%- endif %} |
92 {%- endif %} | 92 {%- endif %} |
93 | 93 |
94 {%- if contentScripts %} | 94 {%- if contentScripts %} |
95 "content_scripts": {{contentScripts|json}}, | 95 "content_scripts": {{contentScripts|json}}, |
96 {%- endif %} | 96 {%- endif %} |
97 | 97 |
98 "_dummy": false | 98 "_dummy": false |
99 } | 99 } |
OLD | NEW |