| OLD | NEW | 
| (Empty) |  | 
 |   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 | 
 |   3 // found in the LICENSE file. | 
 |   4  | 
 |   5 { | 
 |   6   "bookmarks": { | 
 |   7     "channel": "stable", | 
 |   8     "dependencies": ["permission:bookmarks"], | 
 |   9     "contexts": ["blessed_extension"] | 
 |  10   }, | 
 |  11   "webstore": { | 
 |  12     // Hosted apps can use the webstore API from within a blessed context. | 
 |  13     "channel": "stable", | 
 |  14     "extension_types": ["hosted_app"], | 
 |  15     "contexts": ["blessed_extension", "web_page"], | 
 |  16     // Any webpage can use the webstore API. | 
 |  17     "matches": [ "http://*/*", "https://*/*" ] | 
 |  18   } | 
 |  19 } | 
| OLD | NEW |