Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / chromeos / chromevox / manifest.json.jinja2
blobc7e43e4b9549a3b633eb25dd619c03684f434495
2 {%if key is defined %}
3   "key": "{{key}}",
4 {% endif %}
5   "manifest_version": 2,
6   "name": "__MSG_CHROMEVOX_NAME__",
7   "version": "{{set_version}}",
8   "description": "__MSG_CHROMEVOX_DESCRIPTION__",
9 {% if is_guest_manifest == '1' %}
10   "incognito": "split",
11 {% endif %}
12   "background": {
13 {% if is_chromevox_classic == '1' %}
14     "page": "chromevox/background/background.html"
15 {% else %}
16     "page": "cvox2/background/background.html"
17 {% endif %}
18   },
19   "permissions": [
20     "accessibilityPrivate",
21     "bookmarks",
22     "brailleDisplayPrivate",
23     "commands.accessibility",
24     "commandLinePrivate",
25     "experimental",
26     "history",
27     "storage",
28     "systemPrivate",
29     "tabs",
30     "tts",
31     "virtualKeyboardPrivate",
32     "<all_urls>"
33   ],
34   "content_scripts": [
35     {
36       "matches": [ "<all_urls>" ],
37       "exclude_globs": [
38           "chrome-extension://mndnfokpggljbaajbnioimlmbfngpief/chromevox/background/background.html"
39       ],
40       "all_frames": true,
41       "js": [
42 {% if is_js_compressed == '1' %}
43         "chromeVoxChromePageScript.js"
44 {% else %}
45         "closure/closure_preinit.js",
46         "closure/base.js",
47         "deps.js",
48         "chromevox/injected/loader.js"
49 {% endif %}
50       ]
51     }
52   ],
53   "web_accessible_resources": [
54     "chromevox/injected/api.js",
55     "chromevox/injected/api_util.js",
56     "chromevox/injected/mathjax.js",
57     "chromevox/injected/mathjax_external_util.js"
58   ],
59 {% if is_chromevox_classic == '0' %}
60   "automation": {
61     "desktop": true
62   },
63   "commands": {
64     "nextElement": {
65       "description": "__MSG_CHROMEVOX_NEXT_OBJECT__",
66       "suggested_key": {
67         "chromeos": "Search+Right"
68       }
69     },
70     "previousElement": {
71       "description": "__MSG_CHROMEVOX_PREVIOUS_OBJECT__",
72       "suggested_key": {
73         "chromeos": "Search+Left"
74       }
75     },
76     "nextCharacter": {
77       "description": "__MSG_CHROMEVOX_NEXT_CHARACTER__",
78       "suggested_key": {
79         "chromeos": "Search+Shift+Right"
80       }
81     },
82     "previousCharacter": {
83       "description": "__MSG_CHROMEVOX_PREVIOUS_CHARACTER__",
84       "suggested_key": {
85         "chromeos": "Search+Shift+Left"
86       }
87     },
88     "nextWord": {
89       "description": "__MSG_CHROMEVOX_NEXT_WORD__",
90       "suggested_key": {
91         "chromeos": "Search+Ctrl+Shift+Right"
92       }
93     },
94     "previousWord": {
95       "description": "__MSG_CHROMEVOX_PREVIOUS_WORD__",
96       "suggested_key": {
97         "chromeos": "Search+Ctrl+Shift+Left"
98       }
99     },
100     "nextLine": {
101       "description": "__MSG_CHROMEVOX_NEXT_LINE__",
102       "suggested_key": {
103         "chromeos": "Search+Down"
104       }
105     },
106     "previousLine": {
107       "description": "__MSG_CHROMEVOX_PREVIOUS_LINE__",
108       "suggested_key": {
109         "chromeos": "Search+Up"
110       }
111     },
112     "nextLink": {
113       "description": "__MSG_CHROMEVOX_NEXT_LINK__",
114       "suggested_key": {
115         "chromeos": "Search+L"
116       }
117     },
118     "previousLink": {
119       "description": "__MSG_CHROMEVOX_PREVIOUS_LINK__",
120       "suggested_key": {
121         "chromeos": "Search+Shift+L"
122       }
123     },
124     "nextHeading": {
125       "description": "__MSG_CHROMEVOX_NEXT_HEADING__",
126       "suggested_key": {
127         "chromeos": "Search+H"
128       }
129     },
130     "previousHeading": {
131       "description": "__MSG_CHROMEVOX_PREVIOUS_HEADING__",
132       "suggested_key": {
133         "chromeos": "Search+Shift+H"
134       }
135     },
136     "goToBeginning": {
137       "description": "__MSG_CHROMEVOX_JUMP_TO_TOP__",
138       "suggested_key": {
139         "chromeos": "Search+Ctrl+Left"
140       }
141     },
142     "goToEnd": {
143       "description": "__MSG_CHROMEVOX_JUMP_TO_BOTTOM__",
144       "suggested_key": {
145         "chromeos": "Search+Ctrl+Right"
146       }
147     },
148     "doDefault": {
149       "description": "__MSG_CHROMEVOX_PERFORM_DEFAULT_ACTION__",
150       "suggested_key": {
151         "chromeos": "Search+Space"
152       }
153     },
154     "toggleChromeVoxVersion": {
155       "description": "__MSG_CHROMEVOX_TOGGLE_CHROMEVOX__",
156       "suggested_key": {
157         "chromeos": "Search+Ctrl+Q"
158       }
159     },
160     "continuousRead": {
161       "description": "__MSG_CHROMEVOX_READ_FROM_HERE__",
162       "suggested_key": {
163         "chromeos": "Search+R"
164       }
165     }
166   },
167 {% endif %}
168   "options_page": "chromevox/background/options.html",
169   "default_locale": "en"