OLD | NEW |
---|---|
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 permissions for extension APIs implemented | 5 // This features file defines permissions for extension APIs implemented |
6 // under src/chrome. | 6 // under src/chrome. |
7 // See extensions/common/features/* to understand this file, in particular | 7 // See extensions/common/features/* to understand this file, in particular |
8 // feature.h, simple_feature.h, and base_feature_provider.h. | 8 // feature.h, simple_feature.h, and base_feature_provider.h. |
9 | 9 |
10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: | 10 // To add a new whitelisted ID, SHA-1 it and force it to uppercase. In Bash: |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
530 "whitelist": [ | 530 "whitelist": [ |
531 "2462D64ACB971A7E708757159C2B17761D4FF54A", // Citrix Receiver | 531 "2462D64ACB971A7E708757159C2B17761D4FF54A", // Citrix Receiver |
532 "3010EF507AFEF487EEA9CDE2930EC94867C60936", // Citrix Receiver Beta | 532 "3010EF507AFEF487EEA9CDE2930EC94867C60936", // Citrix Receiver Beta |
533 "ABAABC5F49E022A76CBB12972A53B58354C04AC6" // Citrix Receiver Dev | 533 "ABAABC5F49E022A76CBB12972A53B58354C04AC6" // Citrix Receiver Dev |
534 ] | 534 ] |
535 },{ | 535 },{ |
536 "channel": "stable", | 536 "channel": "stable", |
537 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], | 537 "extension_types": ["extension", "legacy_packaged_app", "platform_app"], |
538 "location": "component" | 538 "location": "component" |
539 }], | 539 }], |
540 "launcherSearchProvider": { | 540 "launcherSearchProvider": [ |
541 "channel": "dev", | 541 { |
542 "extension_types": ["extension", "platform_app"], | 542 "channel": "dev", |
Matt Giuca
2015/05/12 01:17:54
I don't think we should make it public on dev just
yawano
2015/05/12 03:27:44
Okay, we will go with whilte-listed for now.
| |
543 "platform": ["chromeos"], | 543 "extension_types": ["extension", "platform_app"], |
544 "whitelist": [ | 544 "platform": ["chromeos"] |
545 "A948368FC53BE437A55FEB414106E207925482F5" // File Manager | 545 }, |
546 ] | 546 { |
547 }, | 547 "channel": "stable", |
Matt Giuca
2015/05/12 01:17:54
Do you also need "channel": "beta"? Or does stable
benwells
2015/05/12 02:51:19
Stable implies beta. This is correct, assuming pub
yawano
2015/05/12 03:27:44
I simply removed dev.
| |
548 "extension_types": ["extension", "platform_app"], | |
549 "platform": ["chromeos"], | |
550 "whitelist": [ | |
551 "A948368FC53BE437A55FEB414106E207925482F5" // File Manager | |
552 ] | |
553 } | |
554 ], | |
548 "location": [ | 555 "location": [ |
549 { | 556 { |
550 "channel": "dev", | 557 "channel": "dev", |
551 "extension_types": [ | 558 "extension_types": [ |
552 "extension", "legacy_packaged_app", "platform_app" | 559 "extension", "legacy_packaged_app", "platform_app" |
553 ] | 560 ] |
554 }, | 561 }, |
555 { | 562 { |
556 "channel": "stable", | 563 "channel": "stable", |
557 "extension_types": [ | 564 "extension_types": [ |
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1018 "channel": "stable", | 1025 "channel": "stable", |
1019 "extension_types": ["platform_app"], | 1026 "extension_types": ["platform_app"], |
1020 "platforms": ["chromeos"], | 1027 "platforms": ["chromeos"], |
1021 "whitelist": [ | 1028 "whitelist": [ |
1022 "A948368FC53BE437A55FEB414106E207925482F5", // Files app | 1029 "A948368FC53BE437A55FEB414106E207925482F5", // Files app |
1023 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player | 1030 "8C726564C6DBE7380BAB388DE6CC7EC93EB44B06", // Video player |
1024 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests | 1031 "5065C83E84321221675D20FBE4DC43C655CC8C6F" // Files app tests |
1025 ] | 1032 ] |
1026 } | 1033 } |
1027 } | 1034 } |
OLD | NEW |