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":"webstorePrivate", | 7 "namespace":"webstorePrivate", |
8 "description": "none", | 8 "description": "none", |
9 "functions": [ | 9 "functions": [ |
10 { | 10 { |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 }, | 104 }, |
105 "appInstallBubble": { | 105 "appInstallBubble": { |
106 "type": "boolean", | 106 "type": "boolean", |
107 "optional": true, | 107 "optional": true, |
108 "description": "A flag to change the UI we show when an app is i
nstalled - a value of true means to show a bubble pointing at the new tab button
(instead of the default behavior of opening the new tab page and animating the
app icon)." | 108 "description": "A flag to change the UI we show when an app is i
nstalled - a value of true means to show a bubble pointing at the new tab button
(instead of the default behavior of opening the new tab page and animating the
app icon)." |
109 }, | 109 }, |
110 "enableLauncher": { | 110 "enableLauncher": { |
111 "type": "boolean", | 111 "type": "boolean", |
112 "optional": true, | 112 "optional": true, |
113 "description": "A flag to cause the app launcher to be installed
before installing the extension, if it isn't installed already." | 113 "description": "A flag to cause the app launcher to be installed
before installing the extension, if it isn't installed already." |
| 114 }, |
| 115 "authuser": { |
| 116 "type": "string", |
| 117 "optional": true, |
| 118 "description": "The authuser index to be included with CRX downl
oad requests in multi-login sessions." |
114 } | 119 } |
115 }, | 120 }, |
116 "additionalProperties": { "type": "any" } | 121 "additionalProperties": { "type": "any" } |
117 }, | 122 }, |
118 { | 123 { |
119 "name": "callback", | 124 "name": "callback", |
120 "type": "function", | 125 "type": "function", |
121 "description": "Called when the user has either accepted/rejected th
e dialog, or some error occurred (such as invalid manifest or icon image data)."
, | 126 "description": "Called when the user has either accepted/rejected th
e dialog, or some error occurred (such as invalid manifest or icon image data)."
, |
122 "optional": true, | 127 "optional": true, |
123 "parameters": [ | 128 "parameters": [ |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 "type": "function", | 272 "type": "function", |
268 "description": "Called if the user is already signed in or if the si
gn-in method was invoked incorrectly (e.g. with an invalid continue URL), sign-i
n is unavailable (e.g. in Incognito), or the API was not called in response to a
user gesture. Upon such a failure, chrome.runtime.lastError will be set to 'inv
alid_continue_url', 'signin_is_disallowed', 'signin_failed', 'merge_session_fail
ed', or 'user_getsure_required'.", | 273 "description": "Called if the user is already signed in or if the si
gn-in method was invoked incorrectly (e.g. with an invalid continue URL), sign-i
n is unavailable (e.g. in Incognito), or the API was not called in response to a
user gesture. Upon such a failure, chrome.runtime.lastError will be set to 'inv
alid_continue_url', 'signin_is_disallowed', 'signin_failed', 'merge_session_fail
ed', or 'user_getsure_required'.", |
269 "optional": true, | 274 "optional": true, |
270 "parameters": [] | 275 "parameters": [] |
271 } | 276 } |
272 ] | 277 ] |
273 } | 278 } |
274 ] | 279 ] |
275 } | 280 } |
276 ] | 281 ] |
OLD | NEW |