Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: templates/manifest.json.tmpl

Issue 29743581: Issue 6552 - Support arbitrary manifest values (Closed) Base URL: https://hg.adblockplus.org/buildtools/file/a3db4a1a49e8
Patch Set: Created April 13, 2018, 9:13 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: templates/manifest.json.tmpl
diff --git a/templates/manifest.json.tmpl b/templates/manifest.json.tmpl
index e2cf347d08c8b8bdcbff4b73b24f3c2eed281e79..db2186ea1a8481af189a50fe0dd36c5a1dc5c317 100644
--- a/templates/manifest.json.tmpl
+++ b/templates/manifest.json.tmpl
@@ -73,12 +73,10 @@
"icons": {{icons|json}},
Sebastian Noack 2018/04/14 00:33:07 I guess content_security_policy can also be handle
tlucas 2018/04/14 08:36:24 Yes - same applies to e.g. "managedStorageSchema".
Sebastian Noack 2018/04/14 08:54:26 Yeah, storage.managed_scheme as well. I think that
{%- endif %}
- {%- if permissions %}
- "permissions": {{permissions|json}},
- {%- endif %}
-
- {%- if optionalPermissions %}
- "optional_permissions": {{optionalPermissions|json}},
+ {%- if extra %}
+ {%- for k, v in extra.items() %}
+ "{{k}}":{{v|json}},
+ {%- endfor %}
{%- endif %}
{%- if backgroundScripts %}
@@ -107,10 +105,6 @@
"content_scripts": {{contentScripts|json}},
{%- endif %}
- {%- if webAccessible %}
- "web_accessible_resources": {{webAccessible|json}},
- {%- endif %}
-
{%- if metadata.has_option('general', 'managedStorageSchema') %}
"storage": {
"managed_schema": {{metadata.get('general', 'managedStorageSchema')|json}}

Powered by Google App Engine
This is Rietveld