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

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

Issue 2216433004: Add skeleton for select-to-speak component extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 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
OLDNEW
(Empty)
1 {
2 {%if key is defined %}
3 "key": "{{key}}",
4 {% endif %}
5 "manifest_version": 2,
6 "name": "X__MSG_SELECT_TO_SPEAK_NAME__",
David Tseng 2016/09/16 21:16:02 Is this a TODO (hence the X prefix)?
dmazzoni 2016/09/16 22:06:20 Made it a more explicit TODO
7 "version": "{{set_version}}",
8 "description": "X__MSG_SELECT_TO_SPEAK_DESCRIPTION__",
9 {% if is_guest_manifest == '1' %}
10 "incognito": "split",
11 {% endif %}
12 "background": {
13 "scripts": [
14 "background.js"
15 ]
16 },
17 "permissions": [
18 "accessibilityPrivate"
19 ],
20 "automation": {
21 "desktop": true
22 }
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698