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 [ | 5 [ |
6 { | 6 { |
7 "namespace": "webstore", | 7 "namespace": "webstore", |
| 8 "description": "Use the <code>chrome.webstore</code> module to initiate app
and extension installations \"inline\" from your site.", |
| 9 "availability": "15", |
8 | 10 |
9 // Any webpage can use the webstore API. | 11 // Any webpage can use the webstore API. |
10 "matches": [ "http://*/*", "https://*/*" ], | 12 "matches": [ "http://*/*", "https://*/*" ], |
11 | 13 |
12 // Hosted apps can use the webstore API from within a blessed context. | 14 // Hosted apps can use the webstore API from within a blessed context. |
13 "uses_feature_system": true, | 15 "uses_feature_system": true, |
14 "channel": "stable", | 16 "channel": "stable", |
15 "extension_types": ["hosted_app"], | 17 "extension_types": ["hosted_app"], |
16 "contexts": ["blessed_extension"], | 18 "contexts": ["blessed_extension"], |
17 "dependencies": [], | 19 "dependencies": [], |
(...skipping 27 matching lines...) Expand all Loading... |
45 "description": "The failure detail. You may wish to inspect or l
og this for debugging purposes, but you should not rely on specific strings bein
g passed back." | 47 "description": "The failure detail. You may wish to inspect or l
og this for debugging purposes, but you should not rely on specific strings bein
g passed back." |
46 } | 48 } |
47 ], | 49 ], |
48 "description": "This function is invoked when inline installation do
es not successfully complete. Possible reasons for this include the user canceli
ng the dialog, the linked item not being found in the store, or the install bein
g initiated from a non-verified site." | 50 "description": "This function is invoked when inline installation do
es not successfully complete. Possible reasons for this include the user canceli
ng the dialog, the linked item not being found in the store, or the install bein
g initiated from a non-verified site." |
49 } | 51 } |
50 ] | 52 ] |
51 } // install | 53 } // install |
52 ] | 54 ] |
53 } // webstore | 55 } // webstore |
54 ] | 56 ] |
OLD | NEW |