Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: chrome/common/extensions/api/_manifest_features.json

Issue 624453003: Clean up Extension Action Handlers Pt 1/2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 "options_page": { 266 "options_page": {
267 "channel": "stable", 267 "channel": "stable",
268 "extension_types": [ 268 "extension_types": [
269 "extension", "legacy_packaged_app", "hosted_app" 269 "extension", "legacy_packaged_app", "hosted_app"
270 ] 270 ]
271 }, 271 },
272 "page_action": { 272 "page_action": {
273 "channel": "stable", 273 "channel": "stable",
274 "extension_types": ["extension"] 274 "extension_types": ["extension"]
275 }, 275 },
276 "page_actions": {
277 "channel": "stable",
278 "extension_types": ["extension"],
279 "max_manifest_version": 1
280 },
281 "permissions": { 276 "permissions": {
282 "channel": "stable", 277 "channel": "stable",
283 "extension_types": [ 278 "extension_types": [
284 "extension", "legacy_packaged_app", "hosted_app", "platform_app" 279 "extension", "legacy_packaged_app", "hosted_app", "platform_app"
285 ] 280 ]
286 }, 281 },
287 "platforms": { 282 "platforms": {
288 "channel": "stable", 283 "channel": "stable",
289 "extension_types": "all" 284 "extension_types": "all"
290 }, 285 },
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 }, 343 },
349 "update_url": { 344 "update_url": {
350 "channel": "stable", 345 "channel": "stable",
351 "extension_types": "all" 346 "extension_types": "all"
352 }, 347 },
353 "url_handlers": { 348 "url_handlers": {
354 "channel": "stable", 349 "channel": "stable",
355 "extension_types": ["platform_app"] 350 "extension_types": ["platform_app"]
356 } 351 }
357 } 352 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698