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 extension APIs implemented under src/chrome. | 5 // This features file defines extension APIs 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 // Note that specifying "web_page", "blessed_web_page", or "all" as a context | 9 // Note that specifying "web_page", "blessed_web_page", or "all" as a context |
10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. | 10 // type will require manually updating chrome/renderer/resources/dispatcher.cc. |
(...skipping 24 matching lines...) Expand all Loading... |
35 "contexts": ["blessed_extension"] | 35 "contexts": ["blessed_extension"] |
36 }, | 36 }, |
37 "alarms": { | 37 "alarms": { |
38 "dependencies": ["permission:alarms"], | 38 "dependencies": ["permission:alarms"], |
39 "contexts": ["blessed_extension"] | 39 "contexts": ["blessed_extension"] |
40 }, | 40 }, |
41 "app": { | 41 "app": { |
42 "blacklist": [ | 42 "blacklist": [ |
43 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice | 43 "2FC374607C2DF285634B67C64A2E356C607091C3", // Quickoffice |
44 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal | 44 "3727DD3E564B6055387425027AD74C58784ACC15", // Quickoffice internal |
45 "12E618C3C6E97495AAECF2AC12DEB082353241C6" // QO component extension | 45 "12E618C3C6E97495AAECF2AC12DEB082353241C6", // QO component extension |
| 46 "06BE211D5F014BAB34BC22D9DDA09C63A81D828E", // Official xkb extension |
| 47 "F94EE6AB36D6C6588670B2B01EB65212D9C64E33" // Open source xkb extension |
46 ], | 48 ], |
47 "channel": "stable", | 49 "channel": "stable", |
48 "extension_types": ["hosted_app", "extension", "legacy_packaged_app"], | 50 "extension_types": ["hosted_app", "extension", "legacy_packaged_app"], |
49 "contexts": [ | 51 "contexts": [ |
50 "blessed_extension", | 52 "blessed_extension", |
51 "unblessed_extension", | 53 "unblessed_extension", |
52 "content_script", | 54 "content_script", |
53 "web_page", | 55 "web_page", |
54 "blessed_web_page" | 56 "blessed_web_page" |
55 ], | 57 ], |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 "internal": true, | 780 "internal": true, |
779 "channel": "stable", | 781 "channel": "stable", |
780 "dependencies": ["permission:webview"], | 782 "dependencies": ["permission:webview"], |
781 "contexts": ["blessed_extension"] | 783 "contexts": ["blessed_extension"] |
782 }, | 784 }, |
783 "windows": { | 785 "windows": { |
784 "dependencies": ["api:tabs"], | 786 "dependencies": ["api:tabs"], |
785 "contexts": ["blessed_extension"] | 787 "contexts": ["blessed_extension"] |
786 } | 788 } |
787 } | 789 } |
OLD | NEW |