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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
42 "blessed_extension", | 42 "blessed_extension", |
43 "unblessed_extension", | 43 "unblessed_extension", |
44 "content_script", | 44 "content_script", |
45 "web_page", | 45 "web_page", |
46 "blessed_web_page" | 46 "blessed_web_page" |
47 ], | 47 ], |
48 "matches": [ | 48 "matches": [ |
49 "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*" | 49 "http://*/*", "https://*/*", "chrome-extension://*/*", "file://*/*" |
50 ] | 50 ] |
51 }, | 51 }, |
52 "app.runtime": { | 52 "app.runtime": [{ |
53 "channel": "stable", | 53 "channel": "stable", |
54 "contexts": ["blessed_extension"], | 54 "contexts": ["blessed_extension"], |
55 "extension_types": ["platform_app"], | 55 "extension_types": ["platform_app"], |
56 "noparent": true | 56 "noparent": true |
57 }, | 57 }, { |
58 "noparent": true, | |
not at google - send to devlin
2014/04/30 15:52:55
nit: attempt alphabetic or at least parallel the o
benwells
2014/05/01 08:19:21
Done.
| |
59 "channel": "stable", | |
60 "extension_types": ["extension"], | |
61 "contexts": ["blessed_extension"], | |
62 "whitelist": [ | |
not at google - send to devlin
2014/04/30 15:52:55
I have an idea: how about implementing a "blacklis
benwells
2014/05/01 01:17:47
OK I'll have a look at that.
benwells
2014/05/01 08:19:21
Done.
| |
63 "gbkeegbaiigmenfmjfclcdgdpimamgkj", // QuickOffice | |
not at google - send to devlin
2014/04/30 15:52:55
we are supposed to be using ID hashes these days.
benwells
2014/05/01 01:17:47
Ah that dangers of copy paste...
benwells
2014/05/01 08:19:21
Done.
| |
64 "ionpfmkccalenbmnddpbmocokhaknphg", // QuickOffice Dev | |
65 "bpmcpldpdmajfigpchkicefoigmkfalc" // Quickoffice component extension | |
66 ] | |
67 }], | |
58 "app.window": { | 68 "app.window": { |
59 "channel": "stable", | 69 "channel": "stable", |
60 "contexts": ["blessed_extension"], | 70 "contexts": ["blessed_extension"], |
61 "extension_types": ["platform_app"], | 71 "extension_types": ["platform_app"], |
62 "noparent": true | 72 "noparent": true |
63 }, | 73 }, |
64 "app.currentWindowInternal": { | 74 "app.currentWindowInternal": { |
65 "noparent": true, | 75 "noparent": true, |
66 "internal": true, | 76 "internal": true, |
67 "channel": "stable", | 77 "channel": "stable", |
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
788 "internal": true, | 798 "internal": true, |
789 "channel": "stable", | 799 "channel": "stable", |
790 "dependencies": ["permission:webview"], | 800 "dependencies": ["permission:webview"], |
791 "contexts": ["blessed_extension"] | 801 "contexts": ["blessed_extension"] |
792 }, | 802 }, |
793 "windows": { | 803 "windows": { |
794 "dependencies": ["api:tabs"], | 804 "dependencies": ["api:tabs"], |
795 "contexts": ["blessed_extension"] | 805 "contexts": ["blessed_extension"] |
796 } | 806 } |
797 } | 807 } |
OLD | NEW |