Chromium Code Reviews| 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"], | |
|
not at google - send to devlin
2013/03/26 00:34:48
hm, the json has a bug, this should include web_pa
cduvall
2013/03/26 19:24:05
Done.
| |
| 16 // Any webpage can use the webstore API. | |
| 17 "matches": [ "http://*/*", "https://*/*" ] | |
| 18 } | |
| 19 } | |
| OLD | NEW |