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

Side by Side Diff: chrome/common/extensions/api/_manifest_features.json

Issue 797183005: Add a mimeHandler extension API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@streams-lifetime
Patch Set: rebase Created 5 years, 11 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This features file defines manifest keys implemented under src/chrome. 5 // This features file defines manifest keys implemented under src/chrome.
6 // See extensions/common/features/* to understand this file, in particular 6 // See extensions/common/features/* to understand this file, in particular
7 // feature.h, simple_feature.h, and base_feature_provider.h. 7 // feature.h, simple_feature.h, and base_feature_provider.h.
8 8
9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: 9 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash:
10 // 10 //
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 "extension_types": ["extension", "legacy_packaged_app"] 160 "extension_types": ["extension", "legacy_packaged_app"]
161 }, 161 },
162 "import": { 162 "import": {
163 "channel": "stable", 163 "channel": "stable",
164 "extension_types": "all" 164 "extension_types": "all"
165 }, 165 },
166 "input_components": { 166 "input_components": {
167 "channel": "stable", 167 "channel": "stable",
168 "extension_types": ["extension", "legacy_packaged_app"] 168 "extension_types": ["extension", "legacy_packaged_app"]
169 }, 169 },
170 "mime_types": {
171 "channel": "stable",
172 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ],
173 "whitelist": [
174 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests
175 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice
176 "ionpfmkccalenbmnddpbmocokhaknphg", // QuickOffice Dev
177 "bpmcpldpdmajfigpchkicefoigmkfalc", // Quickoffice component extension
178 "ehibbfinohgbchlgdbfpikodjaojhccn", // Editor
179 "mhjfbmdgcfjbbpaeojofohoefgiehjai" // PDF
180 ]
181 },
182 "mime_types_handler": {
183 "channel": "stable",
184 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ],
185 "whitelist": [
186 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests
187 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice
188 "ionpfmkccalenbmnddpbmocokhaknphg", // QuickOffice Dev
189 "bpmcpldpdmajfigpchkicefoigmkfalc", // Quickoffice component extension
190 "ehibbfinohgbchlgdbfpikodjaojhccn", // Editor
191 "mhjfbmdgcfjbbpaeojofohoefgiehjai" // PDF
192 ]
193 },
194 "minimum_chrome_version": { 170 "minimum_chrome_version": {
195 "channel": "stable", 171 "channel": "stable",
196 "extension_types": [ 172 "extension_types": [
197 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 173 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
198 ] 174 ]
199 }, 175 },
200 "omnibox": { 176 "omnibox": {
201 "channel": "stable", 177 "channel": "stable",
202 "extension_types": ["extension", "legacy_packaged_app"] 178 "extension_types": ["extension", "legacy_packaged_app"]
203 }, 179 },
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 }, 259 },
284 "update_url": { 260 "update_url": {
285 "channel": "stable", 261 "channel": "stable",
286 "extension_types": "all" 262 "extension_types": "all"
287 }, 263 },
288 "url_handlers": { 264 "url_handlers": {
289 "channel": "stable", 265 "channel": "stable",
290 "extension_types": ["platform_app"] 266 "extension_types": ["platform_app"]
291 } 267 }
292 } 268 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698