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__", |
9 {%- else %} | 9 {%- else %} |
10 "name": "__MSG_name_devbuild__", | 10 "name": "__MSG_name_devbuild__", |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 {%- endif %} | 69 {%- endif %} |
70 | 70 |
71 {%- if contentScripts %} | 71 {%- if contentScripts %} |
72 "content_scripts": {{contentScripts|json}}, | 72 "content_scripts": {{contentScripts|json}}, |
73 {%- endif %} | 73 {%- endif %} |
74 | 74 |
75 {%- if webAccessible %} | 75 {%- if webAccessible %} |
76 "web_accessible_resources": {{webAccessible|json}}, | 76 "web_accessible_resources": {{webAccessible|json}}, |
77 {%- endif %} | 77 {%- endif %} |
78 | 78 |
| 79 {%- if metadata.has_option('general', 'managedStorageSchema') %} |
| 80 "storage": { |
| 81 "managed_schema": {{metadata.get('general', 'managedStorageSchema')|json}} |
| 82 }, |
| 83 {%- endif %} |
| 84 |
79 "_dummy": false | 85 "_dummy": false |
80 } | 86 } |
OLD | NEW |