OLD | NEW |
---|---|
1 { | 1 { |
2 "test1": { | 2 "test1": { |
3 "channel": "stable", | 3 "channel": "stable", |
4 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | 4 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], |
5 "extension_types": ["extension"] | 5 "extension_types": ["extension"] |
6 }, | 6 }, |
7 "test2": { | 7 "test2": { |
8 "channel": "stable", | 8 "channel": "stable", |
9 "contexts": ["web_page"], | 9 "contexts": ["web_page"], |
10 "matches": ["<all_urls>"] | 10 "matches": ["<all_urls>"] |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
84 "parent3": { | 84 "parent3": { |
85 "dependencies": ["api:parent1"], | 85 "dependencies": ["api:parent1"], |
86 "contexts": ["content_script", "blessed_extension", "unblessed_extension"] | 86 "contexts": ["content_script", "blessed_extension", "unblessed_extension"] |
87 }, | 87 }, |
88 "parent3.noparent": { | 88 "parent3.noparent": { |
89 "channel": "stable", | 89 "channel": "stable", |
90 "noparent": true, | 90 "noparent": true, |
91 "contexts": ["content_script", "blessed_extension", "unblessed_extension"] | 91 "contexts": ["content_script", "blessed_extension", "unblessed_extension"] |
92 }, | 92 }, |
93 "parent3.noparent.child": { | 93 "parent3.noparent.child": { |
94 }, | |
95 "kiosk_only": { | |
96 "channel": "stable", | |
97 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | |
98 "session_types": ["kiosk"] | |
99 }, | |
100 "non_kiosk": { | |
101 "channel": "stable", | |
102 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | |
103 "session_types": ["regular"] | |
104 }, | |
105 "empty_session_types": { | |
106 "channel": "stable", | |
107 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | |
108 "session_types": [] | |
109 }, | |
110 "all_session_types": { | |
Devlin
2016/08/23 20:49:06
"all" is doomed to be obsoleted, unless it uses "a
tbarzic
2016/09/08 18:48:55
yeah, I agree, fixed
| |
111 "channel": "stable", | |
112 "contexts": ["content_script", "blessed_extension", "unblessed_extension"], | |
113 "session_types": ["kiosk", "regular"] | |
Devlin
2016/08/23 20:49:06
How would one specify "unknown"?
tbarzic
2016/09/08 18:48:54
it's not possible, by design - "unknown" session t
| |
94 } | 114 } |
95 } | 115 } |
OLD | NEW |