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

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

Issue 7529011: Add a flag that lets the webstore show a different UI on app install. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ready for review Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 6502 matching lines...) Expand 10 before | Expand all | Expand 10 after
6513 }, 6513 },
6514 "localizedName": { 6514 "localizedName": {
6515 "type": "string", 6515 "type": "string",
6516 "optional": true, 6516 "optional": true,
6517 "description": "A string to use instead of the raw value of the 'name' key from manifest.json." 6517 "description": "A string to use instead of the raw value of the 'name' key from manifest.json."
6518 }, 6518 },
6519 "locale": { 6519 "locale": {
6520 "type": "string", 6520 "type": "string",
6521 "optional": true, 6521 "optional": true,
6522 "description": "The name of the locale used for generating local izedName. This should be the name of one of the directories in the _locales fold er of the extension, or the default_locale setting from the manifest." 6522 "description": "The name of the locale used for generating local izedName. This should be the name of one of the directories in the _locales fold er of the extension, or the default_locale setting from the manifest."
6523 },
6524 "appInstallBubble": {
6525 "type": "boolean",
6526 "optional": true,
6527 "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)."
6523 } 6528 }
6524 } 6529 }
6525 }, 6530 },
6526 { 6531 {
6527 "name": "callback", 6532 "name": "callback",
6528 "type": "function", 6533 "type": "function",
6529 "description": "Called when the user has either accepted/rejected th e dialog, or some error occurred (such as invalid manifest or icon image data)." , 6534 "description": "Called when the user has either accepted/rejected th e dialog, or some error occurred (such as invalid manifest or icon image data)." ,
6530 "optional": "true", 6535 "optional": "true",
6531 "parameters": [ 6536 "parameters": [
6532 { 6537 {
(...skipping 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
7348 "description": "A string result code. The value is non-empty on success only in tests.", 7353 "description": "A string result code. The value is non-empty on success only in tests.",
7349 "optional": "true" 7354 "optional": "true"
7350 } 7355 }
7351 ] 7356 ]
7352 } 7357 }
7353 ] 7358 ]
7354 } 7359 }
7355 ] 7360 ]
7356 } 7361 }
7357 ] 7362 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698