| 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 chrome/common/extensions/api/_features.md to understand this file, as | 6 // See chrome/common/extensions/api/_features.md to understand this file, as |
| 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. | 7 // well as feature.h, simple_feature.h, and base_feature_provider.h. |
| 8 | 8 |
| 9 { | 9 { |
| 10 "about_page": { | 10 "about_page": { |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 "options_page": { | 184 "options_page": { |
| 185 "channel": "stable", | 185 "channel": "stable", |
| 186 "extension_types": [ | 186 "extension_types": [ |
| 187 "extension", "legacy_packaged_app", "hosted_app" | 187 "extension", "legacy_packaged_app", "hosted_app" |
| 188 ] | 188 ] |
| 189 }, | 189 }, |
| 190 "page_action": { | 190 "page_action": { |
| 191 "channel": "stable", | 191 "channel": "stable", |
| 192 "extension_types": ["extension"] | 192 "extension_types": ["extension"] |
| 193 }, | 193 }, |
| 194 "permissions": { | |
| 195 "channel": "stable", | |
| 196 "extension_types": [ | |
| 197 "extension", "legacy_packaged_app", "hosted_app", "platform_app" | |
| 198 ] | |
| 199 }, | |
| 200 "platforms": { | 194 "platforms": { |
| 201 "channel": "stable", | 195 "channel": "stable", |
| 202 "extension_types": "all" | 196 "extension_types": "all" |
| 203 }, | 197 }, |
| 204 "plugins": { | 198 "plugins": { |
| 205 "channel": "stable", | 199 "channel": "stable", |
| 206 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"] | 200 "extension_types": ["extension", "legacy_packaged_app", "hosted_app"] |
| 207 }, | 201 }, |
| 208 "requirements": { | 202 "requirements": { |
| 209 "channel": "stable", | 203 "channel": "stable", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 }, | 251 }, |
| 258 "update_url": { | 252 "update_url": { |
| 259 "channel": "stable", | 253 "channel": "stable", |
| 260 "extension_types": "all" | 254 "extension_types": "all" |
| 261 }, | 255 }, |
| 262 "url_handlers": { | 256 "url_handlers": { |
| 263 "channel": "stable", | 257 "channel": "stable", |
| 264 "extension_types": ["platform_app"] | 258 "extension_types": ["platform_app"] |
| 265 } | 259 } |
| 266 } | 260 } |
| OLD | NEW |