Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/manifest.json.jinja2

Issue 417703002: Add scripts to semi-automate publishing of ChromeVox webstore extension using webstore API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address feedback. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDltVl1k15pjRzuZfMc3B69inxwm2bZeZ 2O8/zFO+NluHnBm3GJ3fzdOoFGJd+M16I8p7zxxQyHeDMfWYASyCeB8XnUEDKjqNLQfCnncsANzHsYoE bYj2nEUML2P13b9q+AAvpCBpAJ4cZp81e9n1y/vbSXHE4385cgkKueItzikQIDAQAB", 2 {%if key is defined %}
3 "key": "{{key}}",
4 {% endif %}
3 "manifest_version": 2, 5 "manifest_version": 2,
4 "name": "ChromeVox", 6 "name": "ChromeVox",
5 "version": "1.0", 7 "version": "{{set_version}}",
6 "description": "ChromeVox - Giving Voice to Chrome.", 8 "description": "ChromeVox - Giving Voice to Chrome.",
7 {% if is_guest_manifest == '1' %} 9 {% if is_guest_manifest == '1' %}
8 "incognito": "split", 10 "incognito": "split",
9 {% endif %} 11 {% endif %}
10 "background": { 12 "background": {
11 {% if use_chromevox_next == '1' %} 13 {% if use_chromevox_next == '1' %}
12 "page": "cvox2/background/background.html" 14 "page": "cvox2/background/background.html"
13 {% else %} 15 {% else %}
14 "page": "chromevox/background/background.html" 16 "page": "chromevox/background/background.html"
15 {% endif %} 17 {% endif %}
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "chromevox/injected/mathjax.js", 53 "chromevox/injected/mathjax.js",
52 "chromevox/injected/mathjax_external_util.js" 54 "chromevox/injected/mathjax_external_util.js"
53 ], 55 ],
54 {% if use_chromevox_next == '1' %} 56 {% if use_chromevox_next == '1' %}
55 "automation": { 57 "automation": {
56 "desktop": true 58 "desktop": true
57 }, 59 },
58 {% endif %} 60 {% endif %}
59 "default_locale": "en" 61 "default_locale": "en"
60 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698