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

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

Issue 2680383002: Created skeleton for switch access component extension. (Closed)
Patch Set: Fixing copyright year for new files Created 3 years, 10 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": "TODO: Translated Switch access name",
7 "version": "{{set_version}}",
8 "description": "TODO: Translated Switch access description",
9 {% if is_guest_manifest == '1' %}
10 "incognito": "split",
11 {% endif %}
12 "background": {
13 "scripts": [
14 "switch_access.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