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

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

Issue 2863613003: Implemented scanning by group (Closed)
Patch Set: Responded to comments Created 3 years, 7 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
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 Switch access name", 6 "name": "TODO: Translated Switch access name",
7 "version": "{{set_version}}", 7 "version": "{{set_version}}",
8 "description": "TODO: Translated Switch access description", 8 "description": "TODO: Translated Switch access 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 "prefs.js",
15 "auto_scan_manager.js", 14 "auto_scan_manager.js",
16 "automation_manager.js", 15 "automation_manager.js",
16 "automation_predicate.js",
17 "keyboard_handler.js", 17 "keyboard_handler.js",
18 "prefs.js",
19 "switch_access.js",
18 "tree_walker.js", 20 "tree_walker.js",
19 "switch_access.js",
20 "background.js" 21 "background.js"
21 ] 22 ]
22 }, 23 },
23 "permissions": [ 24 "permissions": [
24 "accessibilityPrivate", 25 "accessibilityPrivate",
25 "storage", 26 "storage",
26 "tabs" 27 "tabs"
27 ], 28 ],
28 "automation": { 29 "automation": {
29 "desktop": true 30 "desktop": true
30 } 31 }
31 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698