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

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

Issue 2509883002: Select-to-speak extension code (Closed)
Patch Set: Improve @private syntax Created 4 years 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
OLDNEW
1 { 1 {
2 {%if key is defined %} 2 {%if key is defined %}
3 "key": "{{key}}", 3 "key": "{{key}}",
4 {% endif %} 4 {% endif %}
5 "manifest_version": 2, 5 "manifest_version": 2,
6 "name": "TODO: Translated Select to speak name", 6 "name": "TODO: Translated Select to speak name",
7 "version": "{{set_version}}", 7 "version": "{{set_version}}",
8 "description": "TODO: Translated Select to speak description", 8 "description": "TODO: Translated Select to speak description",
9 {% if is_guest_manifest == '1' %} 9 {% if is_guest_manifest == '1' %}
10 "incognito": "split", 10 "incognito": "split",
11 {% endif %} 11 {% endif %}
12 "background": { 12 "background": {
13 "scripts": [ 13 "scripts": [
14 "background.js" 14 "select_to_speak.js"
15 ] 15 ]
16 }, 16 },
17 "permissions": [ 17 "permissions": [
18 "accessibilityPrivate" 18 "accessibilityPrivate",
19 "tts"
19 ], 20 ],
20 "automation": { 21 "automation": {
21 "desktop": true 22 "desktop": true
22 } 23 }
23 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698