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

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

Issue 475543004: Added 'launcher_page' field to extension manifest.json format. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Formatting. Created 6 years, 4 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 | Annotate | Revision Log
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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 "extension_types": "all" 217 "extension_types": "all"
218 }, 218 },
219 "input_components": { 219 "input_components": {
220 "channel": "stable", 220 "channel": "stable",
221 "extension_types": ["extension", "legacy_packaged_app"] 221 "extension_types": ["extension", "legacy_packaged_app"]
222 }, 222 },
223 "key": { 223 "key": {
224 "channel": "stable", 224 "channel": "stable",
225 "extension_types": "all" 225 "extension_types": "all"
226 }, 226 },
227 "launcher_page": {
228 "channel": "stable",
229 "min_manifest_version": 2,
230 "extension_types": ["platform_app"],
231 "whitelist": [
232 "07BD6A765FFC289FF755D7CAB2893A40EC337FEC", // http://crbug.com/404000
233 "896B85CC7E913E11C34892C1425A093C0701D386", // http://crbug.com/404000
234 "11A01C82EF355E674E4F9728A801F5C3CB40D83F" // http://crbug.com/404000
235 ]
236 },
227 "manifest_version": { 237 "manifest_version": {
228 "channel": "stable", 238 "channel": "stable",
229 "extension_types": "all" 239 "extension_types": "all"
230 }, 240 },
231 "mime_types": { 241 "mime_types": {
232 "channel": "stable", 242 "channel": "stable",
233 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ], 243 "extension_types": [ "extension", "legacy_packaged_app", "platform_app" ],
234 "whitelist": [ 244 "whitelist": [
235 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests 245 "oickdpebdnfbgkcaoklfcdhjniefkcji", // browser_tests
236 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice 246 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 }, 403 },
394 "url_handlers": { 404 "url_handlers": {
395 "channel": "stable", 405 "channel": "stable",
396 "extension_types": ["platform_app"] 406 "extension_types": ["platform_app"]
397 }, 407 },
398 "version": { 408 "version": {
399 "channel": "stable", 409 "channel": "stable",
400 "extension_types": "all" 410 "extension_types": "all"
401 } 411 }
402 } 412 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698