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 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "channel": "stable", | 42 "channel": "stable", |
43 "extension_types": "all" | 43 "extension_types": "all" |
44 }, | 44 }, |
45 "automation": { | 45 "automation": { |
46 "channel": "trunk", | 46 "channel": "trunk", |
47 "extension_types": ["extension", "legacy_packaged_app"] | 47 "extension_types": ["extension", "legacy_packaged_app"] |
48 }, | 48 }, |
49 "bluetooth": { | 49 "bluetooth": { |
50 // Note: The "bluetooth" manifest permission is used by the | 50 // Note: The "bluetooth" manifest permission is used by the |
51 // chrome.bluetooth, chrome.bluetoothSocket and chrome.bluetoothLowEnergy | 51 // chrome.bluetooth, chrome.bluetoothSocket and chrome.bluetoothLowEnergy |
52 // APIs. Split this property if the APIs get released at different dates. | 52 // APIs. |
53 "channel": "dev", | 53 "channel": "stable", |
54 "extension_types": ["platform_app"] | 54 "extension_types": ["platform_app"] |
55 }, | 55 }, |
56 "browser_action": { | 56 "browser_action": { |
57 "channel": "stable", | 57 "channel": "stable", |
58 "extension_types": ["extension"] | 58 "extension_types": ["extension"] |
59 }, | 59 }, |
60 "chrome_settings_overrides": { | 60 "chrome_settings_overrides": { |
61 "channel": "stable", | 61 "channel": "stable", |
62 "extension_types": ["extension"], | 62 "extension_types": ["extension"], |
63 "platforms": ["win"] | 63 "platforms": ["win"] |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 }, | 376 }, |
377 "url_handlers": { | 377 "url_handlers": { |
378 "channel": "stable", | 378 "channel": "stable", |
379 "extension_types": ["platform_app"] | 379 "extension_types": ["platform_app"] |
380 }, | 380 }, |
381 "version": { | 381 "version": { |
382 "channel": "stable", | 382 "channel": "stable", |
383 "extension_types": "all" | 383 "extension_types": "all" |
384 } | 384 } |
385 } | 385 } |
OLD | NEW |