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

Unified Diff: templates/manifest.json.tmpl

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address comments on patch set 8 Created Oct. 11, 2016, 3:52 p.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
===================================================================
rename from manifest.json.tmpl
rename to templates/manifest.json.tmpl
--- a/manifest.json.tmpl
+++ b/templates/manifest.json.tmpl
@@ -15,16 +15,20 @@
"default_locale": "en_US",
"version": {{version|json}},
"author": {{metadata.get('general', 'author')|json}},
{%- if metadata.has_section('compat') and metadata.has_option('compat', 'chrome') %}
"minimum_chrome_version": {{metadata.get('compat', 'chrome')|json}},
{%- endif %}
+ {%- if metadata.has_section('compat') and metadata.has_option('compat', 'edge') %}
+ "minimum_edge_version": {{metadata.get('compat', 'edge')|json}},
+ {%- endif %}
+
{%- if pageAction %}
"page_action": {
"default_icon": {{pageAction.icon|json}},
{%- if pageAction.popup %}
"default_popup": {{pageAction.popup|json}},
{%- endif %}
"default_title": "__MSG_name__"
},
« packagerEdge.py ('K') | « templates/install.rdf.tmpl ('k') | templates/safariInfo.js.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld