diff options
author | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 16:47:42 +0000 |
---|---|---|
committer | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-11 16:47:42 +0000 |
commit | aefa99e2b6abcb3e1b347d10d2b9a0e4110c68f7 (patch) | |
tree | c0b2b80581c534555664a2c79ac8eb8b000e01ec /chrome | |
parent | ef85bbeac4d297d238bb9c17312261182187cebc (diff) | |
download | chromium_src-aefa99e2b6abcb3e1b347d10d2b9a0e4110c68f7.zip chromium_src-aefa99e2b6abcb3e1b347d10d2b9a0e4110c68f7.tar.gz chromium_src-aefa99e2b6abcb3e1b347d10d2b9a0e4110c68f7.tar.bz2 |
Add documentation about context menu API onclick callbacks.
This required modifying the docs build system to be able to output information
about function parameters.
BUG=49693
TEST=none
Review URL: http://codereview.chromium.org/3167003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55737 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
58 files changed, 5015 insertions, 156 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index a143e8c..ea9252d 100644 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -2503,7 +2503,57 @@ }, { "namespace": "contextMenus", - "types": [], + "types": [ + { + "id": "OnClickData", + "type": "object", + "description": "Information sent when a context menu item is clicked.", + "properties": { + "menuItemId": { + "type": "integer", + "description": "The id of the menu item that was clicked." + }, + "parentMenuItemId": { + "type": "integer", + "optional": true, + "description": "The parent id, if any, for the item clicked." + }, + "mediaType": { + "type": "string", + "optional": true, + "description": "One of 'image', 'video', or 'audio' if the context menu was activated on one of these types of elements." + }, + "linkUrl": { + "type": "string", + "optional": true, + "description": "If the element is a link, the url it points to." + }, + "srcUrl": { + "type": "string", + "optional": true, + "description": "Will be present for elements with a 'src' url." + }, + "pageUrl": { + "type": "string", + "description": "The url of the page where the menu item was clicked." + }, + "frameUrl": { + "type": "string", + "optional": true, + "description": " The url of the frame of the element where the context menu was clicked, if it was in a frame." + }, + "selectionText": { + "type": "string", + "optional": true, + "description": "The text for the context selection, if any." + }, + "editable": { + "type": "string", + "description": "A flag indicating whether the element is editable (text input, textarea, etc.)." + } + } + } + ], "functions": [ { "name": "create", @@ -2543,7 +2593,19 @@ "onclick": { "type": "function", "optional": true, - "description": "Function to be called back when your menu item is clicked." + "description": "A function that will be called back when the menu item is clicked.", + "parameters": [ + { + "name": "info", + "$ref": "OnClickData", + "description": "Information about the item clicked and the context where the click happened." + }, + { + "name": "tab", + "$ref": "Tab", + "description": "The details of the tab where the click took place." + } + ] }, "parentId": { "type": "integer", diff --git a/chrome/common/extensions/docs/a11y.html b/chrome/common/extensions/docs/a11y.html index ee626e1..60e4275 100644 --- a/chrome/common/extensions/docs/a11y.html +++ b/chrome/common/extensions/docs/a11y.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/api_index.html b/chrome/common/extensions/docs/api_index.html index 4ffb9cb..23502d5 100644 --- a/chrome/common/extensions/docs/api_index.html +++ b/chrome/common/extensions/docs/api_index.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/api_other.html b/chrome/common/extensions/docs/api_other.html index 9276959..da77270 100644 --- a/chrome/common/extensions/docs/api_other.html +++ b/chrome/common/extensions/docs/api_other.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/autoupdate.html b/chrome/common/extensions/docs/autoupdate.html index 329935c..14e50ed 100644 --- a/chrome/common/extensions/docs/autoupdate.html +++ b/chrome/common/extensions/docs/autoupdate.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/background_pages.html b/chrome/common/extensions/docs/background_pages.html index a40af2d..15cb561 100644 --- a/chrome/common/extensions/docs/background_pages.html +++ b/chrome/common/extensions/docs/background_pages.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/bookmarks.html b/chrome/common/extensions/docs/bookmarks.html index 38b3cbb..0e7b563 100644 --- a/chrome/common/extensions/docs/bookmarks.html +++ b/chrome/common/extensions/docs/bookmarks.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -556,6 +571,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -610,6 +631,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -664,6 +691,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -718,10 +751,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -776,6 +821,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -858,6 +909,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1007,6 +1064,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1061,6 +1124,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1154,6 +1223,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1239,6 +1314,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1293,6 +1374,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1386,6 +1473,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1469,6 +1562,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1523,6 +1622,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1616,6 +1721,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1700,6 +1811,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1793,6 +1910,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1945,6 +2068,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2046,6 +2175,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2100,10 +2235,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2158,6 +2305,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2240,6 +2393,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2325,6 +2484,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2379,6 +2544,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2495,6 +2666,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2549,6 +2726,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2665,6 +2848,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2719,6 +2908,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2812,6 +3007,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2898,6 +3099,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2999,6 +3206,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3053,10 +3266,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3111,6 +3336,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3193,6 +3424,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3287,6 +3524,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3388,6 +3631,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3442,10 +3691,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3521,6 +3782,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3633,10 +3900,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3712,6 +3991,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3766,6 +4051,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3889,6 +4180,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3990,6 +4287,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4044,6 +4347,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4098,6 +4407,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4152,10 +4467,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -4231,6 +4558,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4332,6 +4665,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4386,10 +4725,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -4505,6 +4856,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4557,6 +4914,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4609,6 +4972,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4661,6 +5030,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4713,6 +5088,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4765,6 +5146,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4817,6 +5204,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4880,10 +5273,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/browserAction.html b/chrome/common/extensions/docs/browserAction.html index 73ff3f6..6db51f5 100644 --- a/chrome/common/extensions/docs/browserAction.html +++ b/chrome/common/extensions/docs/browserAction.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -635,6 +650,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -687,10 +708,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -851,6 +884,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -903,10 +942,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1067,6 +1118,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1119,6 +1176,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1171,10 +1234,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1335,6 +1410,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1387,10 +1468,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1551,6 +1644,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1603,10 +1702,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1732,6 +1843,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/content_scripts.html b/chrome/common/extensions/docs/content_scripts.html index be08a7d..e562124 100644 --- a/chrome/common/extensions/docs/content_scripts.html +++ b/chrome/common/extensions/docs/content_scripts.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/contextMenus.html b/chrome/common/extensions/docs/contextMenus.html index c1f7769..fcb5917 100644 --- a/chrome/common/extensions/docs/contextMenus.html +++ b/chrome/common/extensions/docs/contextMenus.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -258,11 +273,11 @@ </li> </ol> </li> - <li style="display: none; "> + <li> <a href="#types">Types</a> <ol> <li> - <a href="#id-anchor">id</a> + <a href="#type-OnClickData">OnClickData</a> </li> </ol> </li> @@ -467,6 +482,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -519,6 +540,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -571,6 +598,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -634,6 +667,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -666,7 +705,122 @@ For example: <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>Function to be called back when your menu item is clicked.</dd> + <dd>A function that will be called back when the menu item is clicked.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div> + <h5>Parameters</h5> + <dl> + <div> + <div> + <dt> + <var>info</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span> + <a href="contextMenus.html#type-OnClickData">OnClickData</a> + </span> + <span style="display: none; "> + <span> + array of <span><span></span></span> + </span> + <span>paramType</span> + <span></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>Information about the item clicked and the context where the click happened.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>tab</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span> + <a href="tabs.html#type-Tab">Tab</a> + </span> + <span style="display: none; "> + <span> + array of <span><span></span></span> + </span> + <span>paramType</span> + <span></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>The details of the tab where the click took place.</dd> <dd style="display: none; "> This parameter was added in version <b><span></span></b>. @@ -686,6 +840,18 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div> + </dl> + </div> + </dd> + </div> </div><div> <div> @@ -738,6 +904,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -801,6 +973,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -864,10 +1042,22 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -920,6 +1110,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -978,6 +1174,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1083,6 +1285,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1135,6 +1343,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1248,6 +1462,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1363,6 +1583,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1462,6 +1688,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1516,6 +1748,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1570,6 +1808,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1635,6 +1879,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1689,6 +1939,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1741,6 +1997,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1806,6 +2068,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1871,10 +2139,22 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1927,6 +2207,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2014,17 +2300,591 @@ For example: </div> <!-- /apiGroup --> <!-- TYPES --> - <div class="apiGroup" style="display: none; "> + <div class="apiGroup"> <a name="types"></a> <h3 id="types">Types</h3> <!-- iterates over all types --> <div class="apiItem"> - <a></a> - <h4>type name</h4> + <a name="type-OnClickData"></a> + <h4>OnClickData</h4> <div> + <dt> + <var style="display: none; ">paramName</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>object</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>Information sent when a context menu item is clicked.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd> + <dl> + <div> + <div> + <dt> + <var>menuItemId</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>integer</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>The id of the menu item that was clicked.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>parentMenuItemId</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>integer</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>The parent id, if any, for the item clicked.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>mediaType</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>string</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>One of 'image', 'video', or 'audio' if the context menu was activated on one of these types of elements.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>linkUrl</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>string</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>If the element is a link, the url it points to.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>srcUrl</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>string</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>Will be present for elements with a 'src' url.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>pageUrl</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>string</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>The url of the page where the menu item was clicked.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>frameUrl</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>string</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd> The url of the frame of the element where the context menu was clicked, if it was in a frame.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>selectionText</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>string</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>The text for the context selection, if any.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var>editable</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>string</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>A flag indicating whether the element is editable (text input, textarea, etc.).</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/cookies.html b/chrome/common/extensions/docs/cookies.html index 56f1821..fe8a16c 100644 --- a/chrome/common/extensions/docs/cookies.html +++ b/chrome/common/extensions/docs/cookies.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -466,6 +481,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -518,6 +539,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -570,10 +597,22 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -628,6 +667,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -708,6 +753,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -836,6 +887,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -888,6 +945,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -940,6 +1003,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -992,6 +1061,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1044,6 +1119,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1096,6 +1177,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1148,10 +1235,22 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1206,6 +1305,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1297,6 +1402,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1381,6 +1492,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1472,6 +1589,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1599,6 +1722,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1651,6 +1780,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1703,10 +1838,22 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1865,6 +2012,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1917,6 +2070,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1969,6 +2128,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2021,6 +2186,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2073,6 +2244,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2125,6 +2302,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2177,6 +2360,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2229,6 +2418,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2281,10 +2476,22 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2455,6 +2662,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2507,10 +2720,22 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2626,6 +2851,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2678,6 +2909,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2730,6 +2967,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2782,6 +3025,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2834,6 +3083,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2886,6 +3141,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2938,6 +3199,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2990,6 +3257,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3042,6 +3315,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3094,10 +3373,22 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div class="apiItem"> @@ -3199,6 +3490,12 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3262,10 +3559,22 @@ see <a href="samples.html">Samples</a>. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/devguide.html b/chrome/common/extensions/docs/devguide.html index c3825a6..9afde08 100644 --- a/chrome/common/extensions/docs/devguide.html +++ b/chrome/common/extensions/docs/devguide.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/docs.html b/chrome/common/extensions/docs/docs.html index c1adade..50dbd98 100644 --- a/chrome/common/extensions/docs/docs.html +++ b/chrome/common/extensions/docs/docs.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/events.html b/chrome/common/extensions/docs/events.html index 6c64fbb..1758f8a 100644 --- a/chrome/common/extensions/docs/events.html +++ b/chrome/common/extensions/docs/events.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/experimental.clipboard.html b/chrome/common/extensions/docs/experimental.clipboard.html index 4fe0e21..2f13a25 100644 --- a/chrome/common/extensions/docs/experimental.clipboard.html +++ b/chrome/common/extensions/docs/experimental.clipboard.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -390,6 +405,12 @@ generally indicates the tab is going away. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -444,6 +465,12 @@ generally indicates the tab is going away. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -560,6 +587,12 @@ generally indicates the tab is going away. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -614,6 +647,12 @@ generally indicates the tab is going away. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -730,6 +769,12 @@ generally indicates the tab is going away. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -784,6 +829,12 @@ generally indicates the tab is going away. </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/experimental.contextMenus.html b/chrome/common/extensions/docs/experimental.contextMenus.html index 95dda6d..4279510 100644 --- a/chrome/common/extensions/docs/experimental.contextMenus.html +++ b/chrome/common/extensions/docs/experimental.contextMenus.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/experimental.cookies.html b/chrome/common/extensions/docs/experimental.cookies.html index 0cca365..608eeea 100644 --- a/chrome/common/extensions/docs/experimental.cookies.html +++ b/chrome/common/extensions/docs/experimental.cookies.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/experimental.history.html b/chrome/common/extensions/docs/experimental.history.html index 149e606..02ba033 100644 --- a/chrome/common/extensions/docs/experimental.history.html +++ b/chrome/common/extensions/docs/experimental.history.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/experimental.html b/chrome/common/extensions/docs/experimental.html index be21cc1..dde6de0 100644 --- a/chrome/common/extensions/docs/experimental.html +++ b/chrome/common/extensions/docs/experimental.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/experimental.idle.html b/chrome/common/extensions/docs/experimental.idle.html index 08426a3..225024d 100644 --- a/chrome/common/extensions/docs/experimental.idle.html +++ b/chrome/common/extensions/docs/experimental.idle.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/experimental.infobars.html b/chrome/common/extensions/docs/experimental.infobars.html index 5ac4d36..c3aa3bb 100644 --- a/chrome/common/extensions/docs/experimental.infobars.html +++ b/chrome/common/extensions/docs/experimental.infobars.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -420,6 +435,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -472,10 +493,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -530,6 +563,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -610,6 +649,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/experimental.omnibox.html b/chrome/common/extensions/docs/experimental.omnibox.html index 22261a3..9fee789 100644 --- a/chrome/common/extensions/docs/experimental.omnibox.html +++ b/chrome/common/extensions/docs/experimental.omnibox.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -454,6 +469,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -569,6 +590,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -684,6 +711,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -799,6 +832,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -948,6 +987,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1000,6 +1045,146 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div> + <h5>Parameters</h5> + <dl> + <div> + <div> + <dt> + <var>requestId</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>integer</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo"> + Undocumented. + </dd> + <dd style="display: none; "> + Description of this parameter from the json schema. + </dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div><div> + <div> + <dt> + <var style="display: none; ">paramName</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span> + array of <span><span> + <span> + <a href="experimental.omnibox.html#type-SuggestResult">SuggestResult</a> + </span> + <span style="display: none; "> + <span> + array of <span><span></span></span> + </span> + <span>paramType</span> + <span></span> + </span> + </span></span> + </span> + <span style="display: none; ">paramType</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>Array of suggest results</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div> + </dl> + </div> + </dd> + </div> </div> </dl> @@ -1075,6 +1260,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1214,6 +1405,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1266,6 +1463,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1331,10 +1534,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.processes.html b/chrome/common/extensions/docs/experimental.processes.html index c18f69b..75db16b 100644 --- a/chrome/common/extensions/docs/experimental.processes.html +++ b/chrome/common/extensions/docs/experimental.processes.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -385,6 +400,12 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -439,6 +460,12 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -519,6 +546,12 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -679,10 +712,22 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.proxy.html b/chrome/common/extensions/docs/experimental.proxy.html index 13371c1..e8092cf 100644 --- a/chrome/common/extensions/docs/experimental.proxy.html +++ b/chrome/common/extensions/docs/experimental.proxy.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -376,6 +391,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -567,6 +588,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -619,6 +646,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -671,10 +704,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div class="apiItem"> @@ -776,6 +821,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -828,6 +879,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -880,6 +937,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -932,6 +995,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -984,10 +1053,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div class="apiItem"> @@ -1089,10 +1170,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.webNavigation.html b/chrome/common/extensions/docs/experimental.webNavigation.html index 24a6df3..e6dbac0 100644 --- a/chrome/common/extensions/docs/experimental.webNavigation.html +++ b/chrome/common/extensions/docs/experimental.webNavigation.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -503,6 +518,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -557,6 +578,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -609,6 +636,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -661,6 +694,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -713,10 +752,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -837,6 +888,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -889,6 +946,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -941,6 +1004,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -993,10 +1062,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1117,6 +1198,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1171,6 +1258,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1223,6 +1316,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1275,6 +1374,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1327,10 +1432,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1451,6 +1568,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1505,6 +1628,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1557,6 +1686,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1609,10 +1744,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1733,6 +1880,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1787,6 +1940,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1839,6 +1998,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1891,10 +2056,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2015,6 +2192,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2069,6 +2252,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2121,6 +2310,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2173,6 +2368,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2225,10 +2426,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/experimental.webRequest.html b/chrome/common/extensions/docs/experimental.webRequest.html index e9d90d4..5685400 100644 --- a/chrome/common/extensions/docs/experimental.webRequest.html +++ b/chrome/common/extensions/docs/experimental.webRequest.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -503,6 +518,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -555,6 +576,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -607,6 +634,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -659,6 +692,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -711,10 +750,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -835,6 +886,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -889,6 +946,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -941,6 +1004,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -993,6 +1062,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1045,6 +1120,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1097,10 +1178,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1221,6 +1314,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1273,6 +1372,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1325,6 +1430,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1377,10 +1488,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1501,6 +1624,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1553,6 +1682,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1605,6 +1740,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1657,10 +1798,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1781,6 +1934,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1835,6 +1994,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1887,6 +2052,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1939,10 +2110,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2063,6 +2246,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2117,6 +2306,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2169,6 +2364,12 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2221,10 +2422,22 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/extension.html b/chrome/common/extensions/docs/extension.html index 6fc9ef2..b6636a6 100644 --- a/chrome/common/extensions/docs/extension.html +++ b/chrome/common/extensions/docs/extension.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -457,10 +472,22 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <a name="property-inIncognitoTab"></a> @@ -564,10 +591,22 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> @@ -647,6 +686,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -746,10 +791,22 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -808,6 +865,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -923,6 +986,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1159,6 +1228,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1217,6 +1292,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1368,6 +1449,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1420,10 +1507,22 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1493,6 +1592,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1599,6 +1704,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1653,6 +1764,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1707,6 +1824,75 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div> + <h5>Parameters</h5> + <dl> + <div> + <div> + <dt> + <var>response</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>any</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>The JSON response object sent by the handler of the request.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div> + </dl> + </div> + </dd> + </div> </div> </dl> @@ -1787,6 +1973,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1881,6 +2073,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1956,6 +2154,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2029,6 +2233,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2083,6 +2293,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2135,6 +2351,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2208,6 +2430,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2262,6 +2490,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2314,6 +2548,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2429,6 +2669,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2481,10 +2727,22 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div class="apiItem"> @@ -2588,6 +2846,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2642,6 +2906,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2696,6 +2966,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2750,10 +3026,22 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div class="apiItem"> @@ -2857,6 +3145,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2911,6 +3205,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2965,6 +3265,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3019,6 +3325,12 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3071,10 +3383,22 @@ For details, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/external_extensions.html b/chrome/common/extensions/docs/external_extensions.html index 0e77c94..4bc3104 100644 --- a/chrome/common/extensions/docs/external_extensions.html +++ b/chrome/common/extensions/docs/external_extensions.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/faq.html b/chrome/common/extensions/docs/faq.html index d919658..c61a8a4 100644 --- a/chrome/common/extensions/docs/faq.html +++ b/chrome/common/extensions/docs/faq.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/getstarted.html b/chrome/common/extensions/docs/getstarted.html index bb415e2..d259a6a 100644 --- a/chrome/common/extensions/docs/getstarted.html +++ b/chrome/common/extensions/docs/getstarted.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/history.html b/chrome/common/extensions/docs/history.html index e9f98dc..38f9ff9 100644 --- a/chrome/common/extensions/docs/history.html +++ b/chrome/common/extensions/docs/history.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -601,10 +616,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -720,6 +747,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -881,6 +914,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -933,10 +972,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -991,6 +1042,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1151,10 +1208,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1316,10 +1385,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1374,6 +1455,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1467,6 +1554,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1597,6 +1690,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1649,6 +1748,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1701,6 +1806,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1753,10 +1864,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1811,6 +1934,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1904,6 +2033,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2043,6 +2178,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2108,10 +2249,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2187,6 +2340,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2302,6 +2461,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2354,6 +2519,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2406,6 +2577,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2458,6 +2635,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2510,6 +2693,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2562,10 +2751,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div class="apiItem"> @@ -2667,6 +2868,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2719,6 +2926,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2771,6 +2984,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2823,6 +3042,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2875,10 +3100,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/hosting.html b/chrome/common/extensions/docs/hosting.html index 374ff34..8433f5d 100644 --- a/chrome/common/extensions/docs/hosting.html +++ b/chrome/common/extensions/docs/hosting.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/i18n-messages.html b/chrome/common/extensions/docs/i18n-messages.html index 69000aa..0a40221 100644 --- a/chrome/common/extensions/docs/i18n-messages.html +++ b/chrome/common/extensions/docs/i18n-messages.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/i18n.html b/chrome/common/extensions/docs/i18n.html index df457ee..0784458 100644 --- a/chrome/common/extensions/docs/i18n.html +++ b/chrome/common/extensions/docs/i18n.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -964,6 +979,12 @@ For details on calling <code>getAcceptLanguages()</code>, see the </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1055,6 +1076,12 @@ For details on calling <code>getAcceptLanguages()</code>, see the </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1138,6 +1165,12 @@ For details on calling <code>getAcceptLanguages()</code>, see the </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1190,6 +1223,12 @@ For details on calling <code>getAcceptLanguages()</code>, see the </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1248,6 +1287,12 @@ For details on calling <code>getAcceptLanguages()</code>, see the </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/idle.html b/chrome/common/extensions/docs/idle.html index cfb3218..c84aebc 100644 --- a/chrome/common/extensions/docs/idle.html +++ b/chrome/common/extensions/docs/idle.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -389,6 +404,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -443,6 +464,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -525,6 +552,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -619,6 +652,12 @@ For example: </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/index.html b/chrome/common/extensions/docs/index.html index 57b9637..8cd8499 100644 --- a/chrome/common/extensions/docs/index.html +++ b/chrome/common/extensions/docs/index.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/js/api_page_generator.js b/chrome/common/extensions/docs/js/api_page_generator.js index 96fe7be..73e657b 100644 --- a/chrome/common/extensions/docs/js/api_page_generator.js +++ b/chrome/common/extensions/docs/js/api_page_generator.js @@ -331,6 +331,10 @@ function isArray(type) { return type.type == 'array'; } +function isFunction(type) { + return type.type == 'function'; +} + function getTypeRef(type) { return type["$ref"]; } @@ -424,7 +428,7 @@ function getCallbackParameters(parameters) { } function shouldExpandObject(object) { - return (object.type == "object" && object.properties) + return (object.type == "object" && object.properties); } function getPropertyListFromObject(object) { diff --git a/chrome/common/extensions/docs/manifest.html b/chrome/common/extensions/docs/manifest.html index 33b539f..9576c9d 100644 --- a/chrome/common/extensions/docs/manifest.html +++ b/chrome/common/extensions/docs/manifest.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/match_patterns.html b/chrome/common/extensions/docs/match_patterns.html index f190499..7bd4c07 100644 --- a/chrome/common/extensions/docs/match_patterns.html +++ b/chrome/common/extensions/docs/match_patterns.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/messaging.html b/chrome/common/extensions/docs/messaging.html index 1b09e15..84b2dc9 100644 --- a/chrome/common/extensions/docs/messaging.html +++ b/chrome/common/extensions/docs/messaging.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/notifications.html b/chrome/common/extensions/docs/notifications.html index 4b3b6e6..20b8c94 100644 --- a/chrome/common/extensions/docs/notifications.html +++ b/chrome/common/extensions/docs/notifications.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/npapi.html b/chrome/common/extensions/docs/npapi.html index fc19d84..1c86409 100644 --- a/chrome/common/extensions/docs/npapi.html +++ b/chrome/common/extensions/docs/npapi.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/options.html b/chrome/common/extensions/docs/options.html index 78eeed3..3215527 100644 --- a/chrome/common/extensions/docs/options.html +++ b/chrome/common/extensions/docs/options.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/override.html b/chrome/common/extensions/docs/override.html index 4ebe04b..02006ae 100644 --- a/chrome/common/extensions/docs/override.html +++ b/chrome/common/extensions/docs/override.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/overview.html b/chrome/common/extensions/docs/overview.html index 611f627..ae92f06 100644 --- a/chrome/common/extensions/docs/overview.html +++ b/chrome/common/extensions/docs/overview.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/packaging.html b/chrome/common/extensions/docs/packaging.html index 4554fb5..4f0c4b7 100644 --- a/chrome/common/extensions/docs/packaging.html +++ b/chrome/common/extensions/docs/packaging.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/pageAction.html b/chrome/common/extensions/docs/pageAction.html index 62831ed..978952d 100644 --- a/chrome/common/extensions/docs/pageAction.html +++ b/chrome/common/extensions/docs/pageAction.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -515,6 +530,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -675,6 +696,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -727,6 +754,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -779,6 +812,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -831,10 +870,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -995,6 +1046,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1047,10 +1104,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1211,6 +1280,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1263,10 +1338,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1380,6 +1467,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1505,6 +1598,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> diff --git a/chrome/common/extensions/docs/samples.html b/chrome/common/extensions/docs/samples.html index ab5860c..801ccaa 100644 --- a/chrome/common/extensions/docs/samples.html +++ b/chrome/common/extensions/docs/samples.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -273,7 +288,7 @@ <!-- STATIC CONTENT PLACEHOLDER --> <div id="static"><link rel="stylesheet" href="css/samples.css"> -<script>var search_data = {"0262260daf0c8f7b28feff2ef23b05e7abf9d1e0":"A BROWSER ACTION WHICH CHANGES ITS ICON WHEN CLICKED. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETICON","ea2894c41cb8e80a4433a3e6c5772dadce9be90d":"A BROWSER ACTION WITH A POPUP THAT CHANGES THE PAGE COLOR. BROWSER_ACTION POPUP TABS CHROME.TABS.EXECUTESCRIPT","ede3c47b7757245be42ec33fd5ca63df4b490066":"A BROWSER ACTION WITH NO ICON THAT MAKES THE PAGE RED BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.TABS.EXECUTESCRIPT","fbf0aa1a09a15ff8cc4fc7de4fd176d6c663d07a":"ACCEPTLANGUAGE RETURNS ACCEPT LANGUAGES OF THE BROWSER BROWSER_ACTION POPUP CHROME.I18N.GETACCEPTLANGUAGES CHROME.I18N.GETMESSAGE","9a6e4ec46997fb92b324974afa08a3d007e2537f":"ANIMATED PAGE ACTION THIS EXTENSION ADDS AN ANIMATED BROWSER ACTION TO THE TOOLBAR. BACKGROUND_PAGE PAGE_ACTION TABS CHROME.PAGEACTION.HIDE CHROME.PAGEACTION.ONCLICKED CHROME.PAGEACTION.SETICON CHROME.PAGEACTION.SETTITLE CHROME.PAGEACTION.SHOW CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED","9747e3d6a3eab39bc7c17f11a80573c62d44c7e5":"BLANK NEW TAB PAGE CHROME_URL_OVERRIDES","903e7277139e1e6caec123d3319cab295d8d1b3a":"CHROME SOUNDS ENJOY A MORE MAGICAL AND IMMERSIVE EXPERIENCE WHEN BROWSING THE WEB USING THE POWER OF SOUND. BACKGROUND_PAGE BOOKMARKS OPTIONS_PAGE TABS CHROME.BOOKMARKS.ONCREATED CHROME.BOOKMARKS.ONMOVED CHROME.BOOKMARKS.ONREMOVED CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST CHROME.TABS.GET CHROME.TABS.ONATTACHED CHROME.TABS.ONCREATED CHROME.TABS.ONDETACHED CHROME.TABS.ONMOVED CHROME.TABS.ONREMOVED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.WINDOWS.ONCREATED CHROME.WINDOWS.ONFOCUSCHANGED CHROME.WINDOWS.ONREMOVED","0e790e035a4a00b6f1def5ef9a7d7be1bce95ab5":"CHROMIUM BUILDBOT MONITOR DISPLAYS THE STATUS OF THE CHROMIUM BUILDBOT IN THE TOOLBAR. CLICK TO SEE MORE DETAILED STATUS IN A POPUP. BACKGROUND_PAGE BROWSER_ACTION POPUP CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETTITLE","ac31228200b41a87982e386cc90d3a6eee4ad885":"CHROMIUM SEARCH ADD SUPPORT TO THE OMNIBOX TO SEARCH THE CHROMIUM SOURCE CODE. BACKGROUND_PAGE EXPERIMENTAL TABS CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTCHANGED CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTENTERED CHROME.EXPERIMENTAL.OMNIBOX.STYLEMATCH CHROME.EXPERIMENTAL.OMNIBOX.STYLENONE CHROME.EXPERIMENTAL.OMNIBOX.STYLEURL CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.UPDATE","7d5d6cf195bc25480256618e360aa38c6e6fba82":"CLD DISPLAYS THE LANGUAGE OF A TAB BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.SETBADGETEXT CHROME.TABS.DETECTLANGUAGE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED","5d81304a17cf7ac2887484f730fbd2b01e51e166":"CONTEXT MENUS SAMPLE SHOWS SOME OF THE FEATURES OF THE CONTEXT MENUS API BACKGROUND_PAGE CONTEXTMENUS CHROME.CONTEXTMENUS.CREATE","4daa6becd0899a54776d9cf7f09613ed1a9f4d77":"COOKIE API TEST EXTENSION TESTING COOKIE API BACKGROUND_PAGE BROWSER_ACTION COOKIES TABS CHROME.BROWSERACTION.ONCLICKED CHROME.COOKIES.GET CHROME.COOKIES.GETALL CHROME.COOKIES.ONCHANGED CHROME.COOKIES.REMOVE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL","6871d09f4a96bf9d4b6cc724d00e909cee0f3902":"CROSS-DOMAIN XMLHTTPREQUEST FROM A CONTENT SCRIPT DEMONSTRATES A METHOD TO MAKE A CROSS-DOMAIN XMLHTTPREQUEST FETCH FROM A CONTENT SCRIPT. THIS EXTENSION FETCHES THE CURRENT TRENDING TOPICS FROM TWITTER AND INSERTS THEM IN AN OVERLAY AT THE TOP OF GOOGLE NEWS. VISIT HTTP://NEWS.GOOGLE.COM TO TEST THIS EXTENSION. BACKGROUND_PAGE CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST","028eb5364924344029bcbe1d527f132fc72b34e5":"EMAIL THIS PAGE (BY GOOGLE) THIS EXTENSION ADDS AN EMAIL BUTTON TO THE TOOLBAR WHICH ALLOWS YOU TO EMAIL THE PAGE LINK USING YOUR DEFAULT MAIL CLIENT OR GMAIL. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.CONNECT CHROME.EXTENSION.ONCONNECT CHROME.TABS.CREATE CHROME.TABS.EXECUTESCRIPT CHROME.TABS.UPDATE","763a08e9b06595d785568a8d392b95a2f3700258":"EVENT TRACKING WITH GOOGLE ANALYTICS A SAMPLE EXTENSION WHICH USES GOOGLE ANALYTICS TO TRACK USAGE. BACKGROUND_PAGE BROWSER_ACTION POPUP","4e35caa9742fb82dbd628892d23a781614f6eff6":"GOOGLE DOCUMENT LIST VIEWER DEMONSTRATES HOW TO USE OAUTH TO CONNECT THE GOOGLE DOCUMENTS LIST DATA API. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE POPUP TABS CHROME.BROWSERACTION.SETBADGETEXT CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE","bb57f7a0132cbeb36ad7e7bb0ab75c21704234ca":"GOOGLE MAIL CHECKER DISPLAYS THE NUMBER OF UNREAD MESSAGES IN YOUR GOOGLE MAIL INBOX. YOU CAN ALSO CLICK THE BUTTON TO OPEN YOUR INBOX. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETICON CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.I18N.GETMESSAGE CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.ONUPDATED CHROME.TABS.UPDATE","1682e05ea9a1bde985123b04f6f8ac50a8a64033":"GOOGLE WAVE NOTIFIER FIND OUT WHEN YOU HAVE NEW WAVES AND PREVIEW THEM FAST. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE POPUP TABS CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE","14b9651fda4e57b2a5914ba73a779812201b750a":"HELLO WORLD THE FIRST EXTENSION THAT I MADE. BROWSER_ACTION POPUP","0ea1588bd07b20338fc21f725de1542a5fdf9726":"IGOOGLE NEW TAB PAGE CHROME_URL_OVERRIDES","ec97ec20ca2f095d081e39f1565fc12af09ef067":"MAPPY FINDS ADDRESSES IN THE WEB PAGE YOURE ON AND POPS UP A MAP WINDOW. BACKGROUND_PAGE PAGE_ACTION POPUP TABS CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.ONREQUEST CHROME.PAGEACTION.HIDE CHROME.PAGEACTION.SETTITLE CHROME.PAGEACTION.SHOW CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.TABS.SENDREQUEST","b2f5f8a790e16f091a7e4e0a39b2d0a6d32e3a6d":"MERGE WINDOWS MERGES ALL OF THE BROWSERS WINDOWS INTO THE CURRENT WINDOW BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.MOVE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT","51a83d2ba3a32e3ff1bdb624d4e18ccec4c4038e":"MESSAGE TIMER TIMES HOW LONG IT TAKES TO SEND A MESSAGE TO A CONTENT SCRIPT AND BACK. BROWSER_ACTION POPUP TABS CHROME.EXTENSION.ONCONNECT CHROME.EXTENSION.ONREQUEST CHROME.TABS.CONNECT CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.SENDREQUEST","4f6785ec4f937add6728615682dd37c9a42d9548":"MY BOOKMARKS A BROWSER ACTION WITH A POPUP DUMP OF ALL BOOKMARKS, INCLUDING SEARCH, ADD, EDIT AND DELETE. BOOKMARKS BROWSER_ACTION POPUP TABS CHROME.BOOKMARKS.CREATE CHROME.BOOKMARKS.GET CHROME.BOOKMARKS.GETTREE CHROME.BOOKMARKS.REMOVE CHROME.BOOKMARKS.UPDATE CHROME.TABS.CREATE","6444e5c8ae112a6a433909c5e770669cd16e2e5f":"NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.I18N.GETMESSAGE CHROME.TABS.CREATE","597015d3bcce3da693b02314afd607bec4f55291":"NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.TABS.CREATE","3aea027164cb9b732ba4a8c51cb93708891726ef":"NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.TABS.CREATE","f799e26ceef2367cf836f24bcb47df4398b0df58":"NOTIFICATION DEMO SHOWS OFF DESKTOP NOTIFICATIONS, WHICH ARE TOAST WINDOWS THAT POP UP ON THE DESKTOP. BACKGROUND_PAGE NOTIFICATIONS OPTIONS_PAGE TABS CHROME.TABS.CREATE","a88ab12b0241ee3dac6e74bb04da7964fab0f57d":"OMNIBOX EXAMPLE BACKGROUND_PAGE EXPERIMENTAL CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTCHANGED CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTENTERED","8d0a50b57c26bb498be592e871001ffed91541b4":"PAGE ACTION BY CONTENT SHOWS A PAGE ACTION FOR HTML PAGES CONTAINING THE WORD SANDWICH BACKGROUND_PAGE PAGE_ACTION CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST CHROME.PAGEACTION.SHOW","80b86ccc6e8520660fa591caa565826f0ed1b12c":"PAGE ACTION BY URL SHOWS A PAGE ACTION FOR URLS WHICH HAVE THE LETTER G IN THEM. BACKGROUND_PAGE PAGE_ACTION TABS CHROME.PAGEACTION.SHOW CHROME.TABS.ONUPDATED","d74c3c18a1c1dd18b035149105a306f837c8823e":"PAGE BENCHMARKER CHROMIUM PAGE BENCHMARKER. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETTITLE CHROME.EXTENSION.CONNECT CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETEXTENSIONTABS CHROME.EXTENSION.GETURL CHROME.EXTENSION.ONCONNECT CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.GETSELECTED CHROME.TABS.REMOVE CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETCURRENT","e6ae17ab4ccfd7e059c8c01f25760ca5d894c7fd":"PRINT THIS PAGE ADDS A PRINT BUTTON TO THE BROWSER. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.TABS.UPDATE","56a8d2ac24ca7bba78fd88ad57f43fc13c784497":"SAMPLE - OAUTH CONTACTS USES OAUTH TO CONNECT TO GOOGLES CONTACTS SERVICE AND DISPLAY A LIST OF YOUR CONTACTS. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETICON CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE","fc89b35755483af30b66cd72cefa34a43a3e8312":"SHOW TABS IN PROCESS ADDS A BROWSER ACTION SHOWING WHICH TABS SHARE THE CURRENT TABS PROCESS. BROWSER_ACTION EXPERIMENTAL POPUP TABS CHROME.EXPERIMENTAL.PROCESSES.GETPROCESSFORTAB CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT CHROME.WINDOWS.UPDATE","230463f2d5c3d4d0ca13c230e1f00f2aae0a8a64":"TAB INSPECTOR UTILITY FOR WORKING WITH THE EXTENSION TABS API BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.GETSELECTED CHROME.TABS.MOVE CHROME.TABS.ONATTACHED CHROME.TABS.ONCREATED CHROME.TABS.ONDETACHED CHROME.TABS.ONMOVED CHROME.TABS.ONREMOVED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE CHROME.TABS.UPDATE CHROME.WINDOWS.CREATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT CHROME.WINDOWS.GETLASTFOCUSED CHROME.WINDOWS.ONCREATED CHROME.WINDOWS.ONFOCUSCHANGED CHROME.WINDOWS.ONREMOVED CHROME.WINDOWS.REMOVE CHROME.WINDOWS.UPDATE","e1697cacebad05218798bf3e8a0f724517f0e8c3":"TEST SCREENSHOT EXTENSION DEMONSTRATE SCREENSHOT FUNCTIONALITY IN THE CHROME.TABS API. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.GETURL CHROME.EXTENSION.GETVIEWS CHROME.TABS.CAPTUREVISIBLETAB CHROME.TABS.CREATE CHROME.TABS.ONUPDATED","b3de91ab04b7d7a2670ca7ee9d740eb42cead0b6":"TYPED URL HISTORY READS YOUR HISTORY, AND SHOWS THE TOP TEN PAGES YOU GO TO BY TYPING THE URL. BROWSER_ACTION HISTORY TABS CHROME.HISTORY.GETVISITS CHROME.HISTORY.SEARCH CHROME.TABS.CREATE"}</script> +<script>var search_data = {"0262260daf0c8f7b28feff2ef23b05e7abf9d1e0":"A BROWSER ACTION WHICH CHANGES ITS ICON WHEN CLICKED. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETICON","ea2894c41cb8e80a4433a3e6c5772dadce9be90d":"A BROWSER ACTION WITH A POPUP THAT CHANGES THE PAGE COLOR. BROWSER_ACTION POPUP TABS CHROME.TABS.EXECUTESCRIPT","ede3c47b7757245be42ec33fd5ca63df4b490066":"A BROWSER ACTION WITH NO ICON THAT MAKES THE PAGE RED BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.TABS.EXECUTESCRIPT","fbf0aa1a09a15ff8cc4fc7de4fd176d6c663d07a":"ACCEPTLANGUAGE RETURNS ACCEPT LANGUAGES OF THE BROWSER BROWSER_ACTION POPUP CHROME.I18N.GETACCEPTLANGUAGES CHROME.I18N.GETMESSAGE","9a6e4ec46997fb92b324974afa08a3d007e2537f":"ANIMATED PAGE ACTION THIS EXTENSION ADDS AN ANIMATED BROWSER ACTION TO THE TOOLBAR. BACKGROUND_PAGE PAGE_ACTION TABS CHROME.PAGEACTION.HIDE CHROME.PAGEACTION.ONCLICKED CHROME.PAGEACTION.SETICON CHROME.PAGEACTION.SETTITLE CHROME.PAGEACTION.SHOW CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED","9747e3d6a3eab39bc7c17f11a80573c62d44c7e5":"BLANK NEW TAB PAGE CHROME_URL_OVERRIDES","903e7277139e1e6caec123d3319cab295d8d1b3a":"CHROME SOUNDS ENJOY A MORE MAGICAL AND IMMERSIVE EXPERIENCE WHEN BROWSING THE WEB USING THE POWER OF SOUND. BACKGROUND_PAGE BOOKMARKS OPTIONS_PAGE TABS CHROME.BOOKMARKS.ONCREATED CHROME.BOOKMARKS.ONMOVED CHROME.BOOKMARKS.ONREMOVED CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST CHROME.TABS.GET CHROME.TABS.ONATTACHED CHROME.TABS.ONCREATED CHROME.TABS.ONDETACHED CHROME.TABS.ONMOVED CHROME.TABS.ONREMOVED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.WINDOWS.ONCREATED CHROME.WINDOWS.ONFOCUSCHANGED CHROME.WINDOWS.ONREMOVED","0e790e035a4a00b6f1def5ef9a7d7be1bce95ab5":"CHROMIUM BUILDBOT MONITOR DISPLAYS THE STATUS OF THE CHROMIUM BUILDBOT IN THE TOOLBAR. CLICK TO SEE MORE DETAILED STATUS IN A POPUP. BACKGROUND_PAGE BROWSER_ACTION POPUP CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETTITLE","ac31228200b41a87982e386cc90d3a6eee4ad885":"CHROMIUM SEARCH ADD SUPPORT TO THE OMNIBOX TO SEARCH THE CHROMIUM SOURCE CODE. BACKGROUND_PAGE EXPERIMENTAL TABS CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTCHANGED CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTENTERED CHROME.EXPERIMENTAL.OMNIBOX.STYLEMATCH CHROME.EXPERIMENTAL.OMNIBOX.STYLENONE CHROME.EXPERIMENTAL.OMNIBOX.STYLEURL CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.UPDATE","7d5d6cf195bc25480256618e360aa38c6e6fba82":"CLD DISPLAYS THE LANGUAGE OF A TAB BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.SETBADGETEXT CHROME.TABS.DETECTLANGUAGE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED","5d81304a17cf7ac2887484f730fbd2b01e51e166":"CONTEXT MENUS SAMPLE SHOWS SOME OF THE FEATURES OF THE CONTEXT MENUS API BACKGROUND_PAGE CONTEXTMENUS CHROME.CONTEXTMENUS.CREATE","4daa6becd0899a54776d9cf7f09613ed1a9f4d77":"COOKIE API TEST EXTENSION TESTING COOKIE API BACKGROUND_PAGE BROWSER_ACTION COOKIES TABS CHROME.BROWSERACTION.ONCLICKED CHROME.COOKIES.GET CHROME.COOKIES.GETALL CHROME.COOKIES.ONCHANGED CHROME.COOKIES.REMOVE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL","6871d09f4a96bf9d4b6cc724d00e909cee0f3902":"CROSS-DOMAIN XMLHTTPREQUEST FROM A CONTENT SCRIPT DEMONSTRATES A METHOD TO MAKE A CROSS-DOMAIN XMLHTTPREQUEST FETCH FROM A CONTENT SCRIPT. THIS EXTENSION FETCHES THE CURRENT TRENDING TOPICS FROM TWITTER AND INSERTS THEM IN AN OVERLAY AT THE TOP OF GOOGLE NEWS. VISIT HTTP://NEWS.GOOGLE.COM TO TEST THIS EXTENSION. BACKGROUND_PAGE CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST","028eb5364924344029bcbe1d527f132fc72b34e5":"EMAIL THIS PAGE (BY GOOGLE) THIS EXTENSION ADDS AN EMAIL BUTTON TO THE TOOLBAR WHICH ALLOWS YOU TO EMAIL THE PAGE LINK USING YOUR DEFAULT MAIL CLIENT OR GMAIL. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.CONNECT CHROME.EXTENSION.ONCONNECT CHROME.TABS.CREATE CHROME.TABS.EXECUTESCRIPT CHROME.TABS.UPDATE","763a08e9b06595d785568a8d392b95a2f3700258":"EVENT TRACKING WITH GOOGLE ANALYTICS A SAMPLE EXTENSION WHICH USES GOOGLE ANALYTICS TO TRACK USAGE. BACKGROUND_PAGE BROWSER_ACTION POPUP","4e35caa9742fb82dbd628892d23a781614f6eff6":"GOOGLE DOCUMENT LIST VIEWER DEMONSTRATES HOW TO USE OAUTH TO CONNECT THE GOOGLE DOCUMENTS LIST DATA API. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE POPUP TABS CHROME.BROWSERACTION.SETBADGETEXT CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE","bb57f7a0132cbeb36ad7e7bb0ab75c21704234ca":"GOOGLE MAIL CHECKER DISPLAYS THE NUMBER OF UNREAD MESSAGES IN YOUR GOOGLE MAIL INBOX. YOU CAN ALSO CLICK THE BUTTON TO OPEN YOUR INBOX. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETICON CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.I18N.GETMESSAGE CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.ONUPDATED CHROME.TABS.UPDATE","1682e05ea9a1bde985123b04f6f8ac50a8a64033":"GOOGLE WAVE NOTIFIER FIND OUT WHEN YOU HAVE NEW WAVES AND PREVIEW THEM FAST. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE POPUP TABS CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE","14b9651fda4e57b2a5914ba73a779812201b750a":"HELLO WORLD THE FIRST EXTENSION THAT I MADE. BROWSER_ACTION POPUP","0ea1588bd07b20338fc21f725de1542a5fdf9726":"IGOOGLE NEW TAB PAGE CHROME_URL_OVERRIDES","ec97ec20ca2f095d081e39f1565fc12af09ef067":"MAPPY FINDS ADDRESSES IN THE WEB PAGE YOURE ON AND POPS UP A MAP WINDOW. BACKGROUND_PAGE PAGE_ACTION POPUP TABS CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.ONREQUEST CHROME.PAGEACTION.HIDE CHROME.PAGEACTION.SETTITLE CHROME.PAGEACTION.SHOW CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.TABS.SENDREQUEST","b2f5f8a790e16f091a7e4e0a39b2d0a6d32e3a6d":"MERGE WINDOWS MERGES ALL OF THE BROWSERS WINDOWS INTO THE CURRENT WINDOW BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.MOVE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT","51a83d2ba3a32e3ff1bdb624d4e18ccec4c4038e":"MESSAGE TIMER TIMES HOW LONG IT TAKES TO SEND A MESSAGE TO A CONTENT SCRIPT AND BACK. BROWSER_ACTION POPUP TABS CHROME.EXTENSION.ONCONNECT CHROME.EXTENSION.ONREQUEST CHROME.TABS.CONNECT CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.SENDREQUEST","4f6785ec4f937add6728615682dd37c9a42d9548":"MY BOOKMARKS A BROWSER ACTION WITH A POPUP DUMP OF ALL BOOKMARKS, INCLUDING SEARCH, ADD, EDIT AND DELETE. BOOKMARKS BROWSER_ACTION POPUP TABS CHROME.BOOKMARKS.CREATE CHROME.BOOKMARKS.GET CHROME.BOOKMARKS.GETTREE CHROME.BOOKMARKS.REMOVE CHROME.BOOKMARKS.UPDATE CHROME.TABS.CREATE","597015d3bcce3da693b02314afd607bec4f55291":"NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.TABS.CREATE","6444e5c8ae112a6a433909c5e770669cd16e2e5f":"NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.I18N.GETMESSAGE CHROME.TABS.CREATE","3aea027164cb9b732ba4a8c51cb93708891726ef":"NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.TABS.CREATE","f799e26ceef2367cf836f24bcb47df4398b0df58":"NOTIFICATION DEMO SHOWS OFF DESKTOP NOTIFICATIONS, WHICH ARE TOAST WINDOWS THAT POP UP ON THE DESKTOP. BACKGROUND_PAGE NOTIFICATIONS OPTIONS_PAGE TABS CHROME.TABS.CREATE","a88ab12b0241ee3dac6e74bb04da7964fab0f57d":"OMNIBOX EXAMPLE BACKGROUND_PAGE EXPERIMENTAL CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTCHANGED CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTENTERED","8d0a50b57c26bb498be592e871001ffed91541b4":"PAGE ACTION BY CONTENT SHOWS A PAGE ACTION FOR HTML PAGES CONTAINING THE WORD SANDWICH BACKGROUND_PAGE PAGE_ACTION CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST CHROME.PAGEACTION.SHOW","80b86ccc6e8520660fa591caa565826f0ed1b12c":"PAGE ACTION BY URL SHOWS A PAGE ACTION FOR URLS WHICH HAVE THE LETTER G IN THEM. BACKGROUND_PAGE PAGE_ACTION TABS CHROME.PAGEACTION.SHOW CHROME.TABS.ONUPDATED","d74c3c18a1c1dd18b035149105a306f837c8823e":"PAGE BENCHMARKER CHROMIUM PAGE BENCHMARKER. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETTITLE CHROME.EXTENSION.CONNECT CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETEXTENSIONTABS CHROME.EXTENSION.GETURL CHROME.EXTENSION.ONCONNECT CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.GETSELECTED CHROME.TABS.REMOVE CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETCURRENT","e6ae17ab4ccfd7e059c8c01f25760ca5d894c7fd":"PRINT THIS PAGE ADDS A PRINT BUTTON TO THE BROWSER. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.TABS.UPDATE","56a8d2ac24ca7bba78fd88ad57f43fc13c784497":"SAMPLE - OAUTH CONTACTS USES OAUTH TO CONNECT TO GOOGLES CONTACTS SERVICE AND DISPLAY A LIST OF YOUR CONTACTS. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETICON CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE","fc89b35755483af30b66cd72cefa34a43a3e8312":"SHOW TABS IN PROCESS ADDS A BROWSER ACTION SHOWING WHICH TABS SHARE THE CURRENT TABS PROCESS. BROWSER_ACTION EXPERIMENTAL POPUP TABS CHROME.EXPERIMENTAL.PROCESSES.GETPROCESSFORTAB CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT CHROME.WINDOWS.UPDATE","230463f2d5c3d4d0ca13c230e1f00f2aae0a8a64":"TAB INSPECTOR UTILITY FOR WORKING WITH THE EXTENSION TABS API BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.GETSELECTED CHROME.TABS.MOVE CHROME.TABS.ONATTACHED CHROME.TABS.ONCREATED CHROME.TABS.ONDETACHED CHROME.TABS.ONMOVED CHROME.TABS.ONREMOVED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE CHROME.TABS.UPDATE CHROME.WINDOWS.CREATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT CHROME.WINDOWS.GETLASTFOCUSED CHROME.WINDOWS.ONCREATED CHROME.WINDOWS.ONFOCUSCHANGED CHROME.WINDOWS.ONREMOVED CHROME.WINDOWS.REMOVE CHROME.WINDOWS.UPDATE","e1697cacebad05218798bf3e8a0f724517f0e8c3":"TEST SCREENSHOT EXTENSION DEMONSTRATE SCREENSHOT FUNCTIONALITY IN THE CHROME.TABS API. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.GETURL CHROME.EXTENSION.GETVIEWS CHROME.TABS.CAPTUREVISIBLETAB CHROME.TABS.CREATE CHROME.TABS.ONUPDATED","b3de91ab04b7d7a2670ca7ee9d740eb42cead0b6":"TYPED URL HISTORY READS YOUR HISTORY, AND SHOWS THE TOP TEN PAGES YOU GO TO BY TYPING THE URL. BROWSER_ACTION HISTORY TABS CHROME.HISTORY.GETVISITS CHROME.HISTORY.SEARCH CHROME.TABS.CREATE"}</script> <script src="js/sample_search.js"></script> @@ -1514,11 +1529,11 @@ </li> </ul> </div> -</div><div class="sample" id="6444e5c8ae112a6a433909c5e770669cd16e2e5f"> - <img class="icon" src="examples/extensions/news_i18n/news_icon.png"> +</div><div class="sample" id="597015d3bcce3da693b02314afd607bec4f55291"> + <img class="icon" src="examples/extensions/news_a11y/news_icon.png"> <img class="icon" src="images/sample-default-icon.png" style="display: none; "> <h2 class="name"> - <a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/">News Reader</a> + <a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_a11y/">News Reader</a> </h2> <p class="metadata features">Uses <span> @@ -1536,8 +1551,6 @@ <div class="apicalls"><strong>Calls:</strong> <ul> <li> - <code><a href="i18n.html#method-getMessage">chrome.i18n.getMessage</a></code> - </li><li> <code><a href="tabs.html#method-create">chrome.tabs.create</a></code> </li> </ul> @@ -1545,23 +1558,17 @@ <div class="sourcefiles"><strong>Source files:</strong> <ul> <li> - <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/en/messages.json?content-type=text/plain">_locales/en/messages.json</a></code> - </li><li> - <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/es/messages.json?content-type=text/plain">_locales/es/messages.json</a></code> - </li><li> - <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/sr/messages.json?content-type=text/plain">_locales/sr/messages.json</a></code> - </li><li> - <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/feed.html?content-type=text/plain">feed.html</a></code> + <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_a11y/feed.html?content-type=text/plain">feed.html</a></code> </li><li> - <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/manifest.json?content-type=text/plain">manifest.json</a></code> + <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_a11y/manifest.json?content-type=text/plain">manifest.json</a></code> </li> </ul> </div> -</div><div class="sample" id="597015d3bcce3da693b02314afd607bec4f55291"> - <img class="icon" src="examples/extensions/news_a11y/news_icon.png"> +</div><div class="sample" id="6444e5c8ae112a6a433909c5e770669cd16e2e5f"> + <img class="icon" src="examples/extensions/news_i18n/news_icon.png"> <img class="icon" src="images/sample-default-icon.png" style="display: none; "> <h2 class="name"> - <a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_a11y/">News Reader</a> + <a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/">News Reader</a> </h2> <p class="metadata features">Uses <span> @@ -1579,6 +1586,8 @@ <div class="apicalls"><strong>Calls:</strong> <ul> <li> + <code><a href="i18n.html#method-getMessage">chrome.i18n.getMessage</a></code> + </li><li> <code><a href="tabs.html#method-create">chrome.tabs.create</a></code> </li> </ul> @@ -1586,9 +1595,15 @@ <div class="sourcefiles"><strong>Source files:</strong> <ul> <li> - <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_a11y/feed.html?content-type=text/plain">feed.html</a></code> + <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/en/messages.json?content-type=text/plain">_locales/en/messages.json</a></code> </li><li> - <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_a11y/manifest.json?content-type=text/plain">manifest.json</a></code> + <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/es/messages.json?content-type=text/plain">_locales/es/messages.json</a></code> + </li><li> + <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/_locales/sr/messages.json?content-type=text/plain">_locales/sr/messages.json</a></code> + </li><li> + <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/feed.html?content-type=text/plain">feed.html</a></code> + </li><li> + <code><a target="_blank" href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/news_i18n/manifest.json?content-type=text/plain">manifest.json</a></code> </li> </ul> </div> diff --git a/chrome/common/extensions/docs/samples.json b/chrome/common/extensions/docs/samples.json index 4ab8201..0edefba 100644 --- a/chrome/common/extensions/docs/samples.json +++ b/chrome/common/extensions/docs/samples.json @@ -134,8 +134,8 @@ "description": "", "search_string": "A BROWSER ACTION WHICH CHANGES ITS ICON WHEN CLICKED. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETICON", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/browserAction\/set_icon_path\/", "api_calls": [ @@ -158,8 +158,8 @@ "description": "", "search_string": "A BROWSER ACTION WITH A POPUP THAT CHANGES THE PAGE COLOR. BROWSER_ACTION POPUP TABS CHROME.TABS.EXECUTESCRIPT", "source_files": [ - "manifest.json", - "popup.html" + "popup.html", + "manifest.json" ], "path": "examples\/api\/browserAction\/set_page_color\/", "api_calls": [ @@ -182,8 +182,8 @@ "description": "", "search_string": "A BROWSER ACTION WITH NO ICON THAT MAKES THE PAGE RED BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.TABS.EXECUTESCRIPT", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/browserAction\/make_page_red\/", "api_calls": [ @@ -207,11 +207,11 @@ "description": "Returns accept languages of the browser", "search_string": "ACCEPTLANGUAGE RETURNS ACCEPT LANGUAGES OF THE BROWSER BROWSER_ACTION POPUP CHROME.I18N.GETACCEPTLANGUAGES CHROME.I18N.GETMESSAGE", "source_files": [ - "manifest.json", "popup.html", + "manifest.json", + "_locales\/sr\/messages.json", "_locales\/en_US\/messages.json", - "_locales\/es\/messages.json", - "_locales\/sr\/messages.json" + "_locales\/es\/messages.json" ], "path": "examples\/api\/i18n\/getMessage\/", "api_calls": [ @@ -232,8 +232,8 @@ "description": "This extension adds an animated browser action to the toolbar.", "search_string": "ANIMATED PAGE ACTION THIS EXTENSION ADDS AN ANIMATED BROWSER ACTION TO THE TOOLBAR. BACKGROUND_PAGE PAGE_ACTION TABS CHROME.PAGEACTION.HIDE CHROME.PAGEACTION.ONCLICKED CHROME.PAGEACTION.SETICON CHROME.PAGEACTION.SETTITLE CHROME.PAGEACTION.SHOW CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/pageAction\/set_icon\/", "api_calls": [ @@ -258,8 +258,8 @@ "description": "", "search_string": "BLANK NEW TAB PAGE CHROME_URL_OVERRIDES", "source_files": [ - "manifest.json", - "blank.html" + "blank.html", + "manifest.json" ], "path": "examples\/api\/override\/blank_ntp\/", "api_calls": [], @@ -278,10 +278,10 @@ "description": "Enjoy a more magical and immersive experience when browsing the web using the power of sound.", "search_string": "CHROME SOUNDS ENJOY A MORE MAGICAL AND IMMERSIVE EXPERIENCE WHEN BROWSING THE WEB USING THE POWER OF SOUND. BACKGROUND_PAGE BOOKMARKS OPTIONS_PAGE TABS CHROME.BOOKMARKS.ONCREATED CHROME.BOOKMARKS.ONMOVED CHROME.BOOKMARKS.ONREMOVED CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST CHROME.TABS.GET CHROME.TABS.ONATTACHED CHROME.TABS.ONCREATED CHROME.TABS.ONDETACHED CHROME.TABS.ONMOVED CHROME.TABS.ONREMOVED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.WINDOWS.ONCREATED CHROME.WINDOWS.ONFOCUSCHANGED CHROME.WINDOWS.ONREMOVED", "source_files": [ - "bg.js", - "manifest.json", "bg.html", "content.js", + "bg.js", + "manifest.json", "options.html" ], "path": "examples\/extensions\/fx\/", @@ -321,9 +321,9 @@ "description": "Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.", "search_string": "CHROMIUM BUILDBOT MONITOR DISPLAYS THE STATUS OF THE CHROMIUM BUILDBOT IN THE TOOLBAR. CLICK TO SEE MORE DETAILED STATUS IN A POPUP. BACKGROUND_PAGE BROWSER_ACTION POPUP CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETTITLE", "source_files": [ - "manifest.json", "bg.html", - "popup.html" + "popup.html", + "manifest.json" ], "path": "examples\/extensions\/buildbot\/", "api_calls": [ @@ -348,8 +348,8 @@ "description": "Add support to the omnibox to search the Chromium source code.", "search_string": "CHROMIUM SEARCH ADD SUPPORT TO THE OMNIBOX TO SEARCH THE CHROMIUM SOURCE CODE. BACKGROUND_PAGE EXPERIMENTAL TABS CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTCHANGED CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTENTERED CHROME.EXPERIMENTAL.OMNIBOX.STYLEMATCH CHROME.EXPERIMENTAL.OMNIBOX.STYLENONE CHROME.EXPERIMENTAL.OMNIBOX.STYLEURL CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.UPDATE", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/extensions\/chrome_search\/", "api_calls": [ @@ -378,8 +378,8 @@ "description": "Displays the language of a tab", "search_string": "CLD DISPLAYS THE LANGUAGE OF A TAB BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.SETBADGETEXT CHROME.TABS.DETECTLANGUAGE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/i18n\/cld\/", "api_calls": [ @@ -403,9 +403,9 @@ "description": "Shows some of the features of the Context Menus API", "search_string": "CONTEXT MENUS SAMPLE SHOWS SOME OF THE FEATURES OF THE CONTEXT MENUS API BACKGROUND_PAGE CONTEXTMENUS CHROME.CONTEXTMENUS.CREATE", "source_files": [ - "manifest.json", + "background.html", "sample.js", - "background.html" + "manifest.json" ], "path": "examples\/api\/contextMenus\/basic\/", "api_calls": [ @@ -426,9 +426,9 @@ "description": "Testing Cookie API", "search_string": "COOKIE API TEST EXTENSION TESTING COOKIE API BACKGROUND_PAGE BROWSER_ACTION COOKIES TABS CHROME.BROWSERACTION.ONCLICKED CHROME.COOKIES.GET CHROME.COOKIES.GETALL CHROME.COOKIES.ONCHANGED CHROME.COOKIES.REMOVE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL", "source_files": [ - "manager.html", + "background.html", "manifest.json", - "background.html" + "manager.html" ], "path": "examples\/api\/cookies\/", "api_calls": [ @@ -458,9 +458,9 @@ "description": "Demonstrates a method to make a cross-domain XMLHttpRequest fetch from a content script. This extension fetches the current trending topics from Twitter and inserts them in an overlay at the top of Google News. Visit http:\/\/news.google.com to test this extension.", "search_string": "CROSS-DOMAIN XMLHTTPREQUEST FROM A CONTENT SCRIPT DEMONSTRATES A METHOD TO MAKE A CROSS-DOMAIN XMLHTTPREQUEST FETCH FROM A CONTENT SCRIPT. THIS EXTENSION FETCHES THE CURRENT TRENDING TOPICS FROM TWITTER AND INSERTS THEM IN AN OVERLAY AT THE TOP OF GOOGLE NEWS. VISIT HTTP:\/\/NEWS.GOOGLE.COM TO TEST THIS EXTENSION. BACKGROUND_PAGE CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST", "source_files": [ + "background.html", "manifest.json", - "contentscript.js", - "background.html" + "contentscript.js" ], "path": "examples\/howto\/contentscript_xhr\/", "api_calls": [ @@ -484,10 +484,10 @@ "description": "This extension adds an email button to the toolbar which allows you to email the page link using your default mail client or Gmail.", "search_string": "EMAIL THIS PAGE (BY GOOGLE) THIS EXTENSION ADDS AN EMAIL BUTTON TO THE TOOLBAR WHICH ALLOWS YOU TO EMAIL THE PAGE LINK USING YOUR DEFAULT MAIL CLIENT OR GMAIL. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.CONNECT CHROME.EXTENSION.ONCONNECT CHROME.TABS.CREATE CHROME.TABS.EXECUTESCRIPT CHROME.TABS.UPDATE", "source_files": [ - "manifest.json", - "options.html", + "background.html", "content_script.js", - "background.html" + "manifest.json", + "options.html" ], "path": "examples\/extensions\/email_this_page\/", "api_calls": [ @@ -515,10 +515,10 @@ "description": "A sample extension which uses Google Analytics to track usage.", "search_string": "EVENT TRACKING WITH GOOGLE ANALYTICS A SAMPLE EXTENSION WHICH USES GOOGLE ANALYTICS TO TRACK USAGE. BACKGROUND_PAGE BROWSER_ACTION POPUP", "source_files": [ - "analytics.js", - "manifest.json", "popup.html", - "background.html" + "background.html", + "analytics.js", + "manifest.json" ], "path": "examples\/tutorials\/analytics\/", "api_calls": [], @@ -538,13 +538,13 @@ "description": "Demonstrates how to use OAuth to connect the Google Documents List Data API.", "search_string": "GOOGLE DOCUMENT LIST VIEWER DEMONSTRATES HOW TO USE OAUTH TO CONNECT THE GOOGLE DOCUMENTS LIST DATA API. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE POPUP TABS CHROME.BROWSERACTION.SETBADGETEXT CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE", "source_files": [ - "chrome_ex_oauthsimple.js", - "manifest.json", - "options.html", - "chrome_ex_oauth.js", "chrome_ex_oauth.html", "popup.html", + "chrome_ex_oauthsimple.js", "background.html", + "chrome_ex_oauth.js", + "manifest.json", + "options.html", "js\/jquery-1.4.1.min.js" ], "path": "examples\/extensions\/gdocs\/", @@ -578,51 +578,51 @@ "description": "Displays the number of unread messages in your Google Mail inbox. You can also click the button to open your inbox.", "search_string": "GOOGLE MAIL CHECKER DISPLAYS THE NUMBER OF UNREAD MESSAGES IN YOUR GOOGLE MAIL INBOX. YOU CAN ALSO CLICK THE BUTTON TO OPEN YOUR INBOX. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETICON CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.I18N.GETMESSAGE CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.ONUPDATED CHROME.TABS.UPDATE", "source_files": [ + "background.html", "manifest.json", "options.html", - "background.html", - "_locales\/hi\/messages.json", - "_locales\/zh_TW\/messages.json", + "_locales\/de\/messages.json", + "_locales\/el\/messages.json", + "_locales\/he\/messages.json", + "_locales\/sv\/messages.json", + "_locales\/pl\/messages.json", + "_locales\/fi\/messages.json", "_locales\/lt\/messages.json", - "_locales\/ru\/messages.json", - "_locales\/sl\/messages.json", - "_locales\/pt_BR\/messages.json", - "_locales\/fil\/messages.json", - "_locales\/da\/messages.json", - "_locales\/th\/messages.json", "_locales\/zh_CN\/messages.json", - "_locales\/es\/messages.json", - "_locales\/vi\/messages.json", - "_locales\/fi\/messages.json", - "_locales\/tr\/messages.json", - "_locales\/sv\/messages.json", + "_locales\/it\/messages.json", + "_locales\/sr\/messages.json", + "_locales\/da\/messages.json", + "_locales\/bg\/messages.json", + "_locales\/fil\/messages.json", + "_locales\/sl\/messages.json", "_locales\/cs\/messages.json", - "_locales\/uk\/messages.json", - "_locales\/nl\/messages.json", - "_locales\/ko\/messages.json", - "_locales\/de\/messages.json", - "_locales\/ar\/messages.json", - "_locales\/lv\/messages.json", - "_locales\/ro\/messages.json", - "_locales\/sk\/messages.json", - "_locales\/et\/messages.json", "_locales\/en_GB\/messages.json", - "_locales\/it\/messages.json", - "_locales\/hu\/messages.json", - "_locales\/pl\/messages.json", "_locales\/es_419\/messages.json", - "_locales\/el\/messages.json", + "_locales\/pt_PT\/messages.json", "_locales\/ca\/messages.json", - "_locales\/ja\/messages.json", - "_locales\/nb\/messages.json", - "_locales\/bg\/messages.json", - "_locales\/he\/messages.json", + "_locales\/ar\/messages.json", + "_locales\/pt_BR\/messages.json", + "_locales\/et\/messages.json", + "_locales\/es\/messages.json", + "_locales\/tr\/messages.json", + "_locales\/ro\/messages.json", + "_locales\/lv\/messages.json", + "_locales\/hi\/messages.json", "_locales\/id\/messages.json", - "_locales\/sr\/messages.json", + "_locales\/vi\/messages.json", "_locales\/en\/messages.json", - "_locales\/pt_PT\/messages.json", "_locales\/hr\/messages.json", - "_locales\/fr\/messages.json" + "_locales\/nb\/messages.json", + "_locales\/hu\/messages.json", + "_locales\/ja\/messages.json", + "_locales\/th\/messages.json", + "_locales\/zh_TW\/messages.json", + "_locales\/ko\/messages.json", + "_locales\/uk\/messages.json", + "_locales\/nl\/messages.json", + "_locales\/sk\/messages.json", + "_locales\/fr\/messages.json", + "_locales\/ru\/messages.json" ], "path": "examples\/extensions\/gmail\/", "api_calls": [ @@ -657,14 +657,14 @@ "description": "Find out when you have new waves and preview them fast.", "search_string": "GOOGLE WAVE NOTIFIER FIND OUT WHEN YOU HAVE NEW WAVES AND PREVIEW THEM FAST. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE POPUP TABS CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE", "source_files": [ + "chrome_ex_oauth.html", + "popup.html", "chrome_ex_oauthsimple.js", - "manifest.json", - "options.html", "prettyload.js", + "background.html", "chrome_ex_oauth.js", - "chrome_ex_oauth.html", - "popup.html", - "background.html" + "manifest.json", + "options.html" ], "path": "examples\/extensions\/wave\/", "api_calls": [ @@ -692,8 +692,8 @@ "description": "The first extension that I made.", "search_string": "HELLO WORLD THE FIRST EXTENSION THAT I MADE. BROWSER_ACTION POPUP", "source_files": [ - "manifest.json", - "popup.html" + "popup.html", + "manifest.json" ], "path": "examples\/tutorials\/getstarted\/", "api_calls": [], @@ -731,10 +731,10 @@ "description": "Finds addresses in the web page you're on and pops up a map window.", "search_string": "MAPPY FINDS ADDRESSES IN THE WEB PAGE YOURE ON AND POPS UP A MAP WINDOW. BACKGROUND_PAGE PAGE_ACTION POPUP TABS CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.ONREQUEST CHROME.PAGEACTION.HIDE CHROME.PAGEACTION.SETTITLE CHROME.PAGEACTION.SHOW CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.TABS.SENDREQUEST", "source_files": [ - "manifest.json", "mappy_content_script.js", "popup.html", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/extensions\/mappy\/", "api_calls": [ @@ -765,8 +765,8 @@ "description": "Merges all of the browser's windows into the current window", "search_string": "MERGE WINDOWS MERGES ALL OF THE BROWSERS WINDOWS INTO THE CURRENT WINDOW BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.MOVE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/windows\/merge_windows\/", "api_calls": [ @@ -792,9 +792,9 @@ "description": "Times how long it takes to send a message to a content script and back.", "search_string": "MESSAGE TIMER TIMES HOW LONG IT TAKES TO SEND A MESSAGE TO A CONTENT SCRIPT AND BACK. BROWSER_ACTION POPUP TABS CHROME.EXTENSION.ONCONNECT CHROME.EXTENSION.ONREQUEST CHROME.TABS.CONNECT CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.SENDREQUEST", "source_files": [ - "manifest.json", + "popup.html", "page.js", - "popup.html" + "manifest.json" ], "path": "examples\/api\/messaging\/timer\/", "api_calls": [ @@ -820,8 +820,8 @@ "description": "A browser action with a popup dump of all bookmarks, including search, add, edit and delete.", "search_string": "MY BOOKMARKS A BROWSER ACTION WITH A POPUP DUMP OF ALL BOOKMARKS, INCLUDING SEARCH, ADD, EDIT AND DELETE. BOOKMARKS BROWSER_ACTION POPUP TABS CHROME.BOOKMARKS.CREATE CHROME.BOOKMARKS.GET CHROME.BOOKMARKS.GETTREE CHROME.BOOKMARKS.REMOVE CHROME.BOOKMARKS.UPDATE CHROME.TABS.CREATE", "source_files": [ - "manifest.json", - "popup.html" + "popup.html", + "manifest.json" ], "path": "examples\/api\/bookmarks\/basic\/", "api_calls": [ @@ -844,22 +844,17 @@ ], "icon": "news_icon.png", "description": "Displays the first 5 items from the 'Google News - top news' RSS feed in a popup.", - "search_string": "NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.I18N.GETMESSAGE CHROME.TABS.CREATE", + "search_string": "NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.TABS.CREATE", "source_files": [ - "manifest.json", "feed.html", - "_locales\/es\/messages.json", - "_locales\/sr\/messages.json", - "_locales\/en\/messages.json" + "manifest.json" ], - "path": "examples\/extensions\/news_i18n\/", + "path": "examples\/extensions\/news_a11y\/", "api_calls": [ - "chrome.i18n.getMessage", "chrome.tabs.create" ], - "id": "6444e5c8ae112a6a433909c5e770669cd16e2e5f", + "id": "597015d3bcce3da693b02314afd607bec4f55291", "protocols": [ - "http:\/\/", "http:\/\/" ], "name": "News Reader" @@ -872,17 +867,22 @@ ], "icon": "news_icon.png", "description": "Displays the first 5 items from the 'Google News - top news' RSS feed in a popup.", - "search_string": "NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.TABS.CREATE", + "search_string": "NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.I18N.GETMESSAGE CHROME.TABS.CREATE", "source_files": [ + "feed.html", "manifest.json", - "feed.html" + "_locales\/sr\/messages.json", + "_locales\/es\/messages.json", + "_locales\/en\/messages.json" ], - "path": "examples\/extensions\/news_a11y\/", + "path": "examples\/extensions\/news_i18n\/", "api_calls": [ + "chrome.i18n.getMessage", "chrome.tabs.create" ], - "id": "597015d3bcce3da693b02314afd607bec4f55291", + "id": "6444e5c8ae112a6a433909c5e770669cd16e2e5f", "protocols": [ + "http:\/\/", "http:\/\/" ], "name": "News Reader" @@ -897,8 +897,8 @@ "description": "Displays the first 5 items from the 'Google News - top news' RSS feed in a popup.", "search_string": "NEWS READER DISPLAYS THE FIRST 5 ITEMS FROM THE GOOGLE NEWS - TOP NEWS RSS FEED IN A POPUP. BROWSER_ACTION POPUP TABS CHROME.TABS.CREATE", "source_files": [ - "manifest.json", - "feed.html" + "feed.html", + "manifest.json" ], "path": "examples\/extensions\/news\/", "api_calls": [ @@ -922,9 +922,9 @@ "search_string": "NOTIFICATION DEMO SHOWS OFF DESKTOP NOTIFICATIONS, WHICH ARE TOAST WINDOWS THAT POP UP ON THE DESKTOP. BACKGROUND_PAGE NOTIFICATIONS OPTIONS_PAGE TABS CHROME.TABS.CREATE", "source_files": [ "error.html", + "background.html", "manifest.json", - "options.html", - "background.html" + "options.html" ], "path": "examples\/api\/notifications\/", "api_calls": [ @@ -943,8 +943,8 @@ "description": "", "search_string": "OMNIBOX EXAMPLE BACKGROUND_PAGE EXPERIMENTAL CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTCHANGED CHROME.EXPERIMENTAL.OMNIBOX.ONINPUTENTERED", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/omnibox\/", "api_calls": [ @@ -964,9 +964,9 @@ "description": "Shows a page action for HTML pages containing the word 'sandwich'", "search_string": "PAGE ACTION BY CONTENT SHOWS A PAGE ACTION FOR HTML PAGES CONTAINING THE WORD SANDWICH BACKGROUND_PAGE PAGE_ACTION CHROME.EXTENSION.ONREQUEST CHROME.EXTENSION.SENDREQUEST CHROME.PAGEACTION.SHOW", "source_files": [ + "background.html", "manifest.json", - "contentscript.js", - "background.html" + "contentscript.js" ], "path": "examples\/api\/pageAction\/pageaction_by_content\/", "api_calls": [ @@ -988,8 +988,8 @@ "description": "Shows a page action for urls which have the letter 'g' in them.", "search_string": "PAGE ACTION BY URL SHOWS A PAGE ACTION FOR URLS WHICH HAVE THE LETTER G IN THEM. BACKGROUND_PAGE PAGE_ACTION TABS CHROME.PAGEACTION.SHOW CHROME.TABS.ONUPDATED", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/pageAction\/pageaction_by_url\/", "api_calls": [ @@ -1011,14 +1011,14 @@ "description": "Chromium Page Benchmarker.", "search_string": "PAGE BENCHMARKER CHROMIUM PAGE BENCHMARKER. BACKGROUND_PAGE BROWSER_ACTION OPTIONS_PAGE TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETBADGEBACKGROUNDCOLOR CHROME.BROWSERACTION.SETBADGETEXT CHROME.BROWSERACTION.SETTITLE CHROME.EXTENSION.CONNECT CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETEXTENSIONTABS CHROME.EXTENSION.GETURL CHROME.EXTENSION.ONCONNECT CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.GETSELECTED CHROME.TABS.REMOVE CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETCURRENT", "source_files": [ + "background.html", "manifest.json", - "script.js", "options.html", - "background.html", - "jst\/jstemplate_test.js", + "script.js", "jst\/util.js", - "jst\/jstemplate.js", - "jst\/jsevalcontext.js" + "jst\/jstemplate_test.js", + "jst\/jsevalcontext.js", + "jst\/jstemplate.js" ], "path": "examples\/extensions\/benchmark\/", "api_calls": [ @@ -1054,8 +1054,8 @@ "description": "Adds a print button to the browser.", "search_string": "PRINT THIS PAGE ADDS A PRINT BUTTON TO THE BROWSER. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.TABS.UPDATE", "source_files": [ - "manifest.json", - "background.html" + "background.html", + "manifest.json" ], "path": "examples\/api\/browserAction\/print\/", "api_calls": [ @@ -1079,12 +1079,12 @@ "description": "Uses OAuth to connect to Google's contacts service and display a list of your contacts.", "search_string": "SAMPLE - OAUTH CONTACTS USES OAUTH TO CONNECT TO GOOGLES CONTACTS SERVICE AND DISPLAY A LIST OF YOUR CONTACTS. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.BROWSERACTION.SETICON CHROME.EXTENSION.GETBACKGROUNDPAGE CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE", "source_files": [ + "chrome_ex_oauth.html", "chrome_ex_oauthsimple.js", - "manifest.json", + "background.html", "contacts.html", "chrome_ex_oauth.js", - "chrome_ex_oauth.html", - "background.html" + "manifest.json" ], "path": "examples\/extensions\/oauth_contacts\/", "api_calls": [ @@ -1118,8 +1118,8 @@ "description": "Adds a browser action showing which tabs share the current tab's process.", "search_string": "SHOW TABS IN PROCESS ADDS A BROWSER ACTION SHOWING WHICH TABS SHARE THE CURRENT TABS PROCESS. BROWSER_ACTION EXPERIMENTAL POPUP TABS CHROME.EXPERIMENTAL.PROCESSES.GETPROCESSFORTAB CHROME.TABS.GET CHROME.TABS.GETSELECTED CHROME.TABS.UPDATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT CHROME.WINDOWS.UPDATE", "source_files": [ - "manifest.json", - "popup.html" + "popup.html", + "manifest.json" ], "path": "examples\/api\/processes\/show_tabs\/", "api_calls": [ @@ -1146,10 +1146,10 @@ "description": "Utility for working with the extension tabs api", "search_string": "TAB INSPECTOR UTILITY FOR WORKING WITH THE EXTENSION TABS API BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.GETURL CHROME.TABS.CREATE CHROME.TABS.GET CHROME.TABS.GETALLINWINDOW CHROME.TABS.GETSELECTED CHROME.TABS.MOVE CHROME.TABS.ONATTACHED CHROME.TABS.ONCREATED CHROME.TABS.ONDETACHED CHROME.TABS.ONMOVED CHROME.TABS.ONREMOVED CHROME.TABS.ONSELECTIONCHANGED CHROME.TABS.ONUPDATED CHROME.TABS.REMOVE CHROME.TABS.UPDATE CHROME.WINDOWS.CREATE CHROME.WINDOWS.GET CHROME.WINDOWS.GETALL CHROME.WINDOWS.GETCURRENT CHROME.WINDOWS.GETLASTFOCUSED CHROME.WINDOWS.ONCREATED CHROME.WINDOWS.ONFOCUSCHANGED CHROME.WINDOWS.ONREMOVED CHROME.WINDOWS.REMOVE CHROME.WINDOWS.UPDATE", "source_files": [ - "tabs_api.html", - "manifest.json", + "background.html", "jstemplate_compiled.js", - "background.html" + "manifest.json", + "tabs_api.html" ], "path": "examples\/api\/tabs\/inspector\/", "api_calls": [ @@ -1194,10 +1194,10 @@ "description": "Demonstrate screenshot functionality in the chrome.tabs api.", "search_string": "TEST SCREENSHOT EXTENSION DEMONSTRATE SCREENSHOT FUNCTIONALITY IN THE CHROME.TABS API. BACKGROUND_PAGE BROWSER_ACTION TABS CHROME.BROWSERACTION.ONCLICKED CHROME.EXTENSION.GETURL CHROME.EXTENSION.GETVIEWS CHROME.TABS.CAPTUREVISIBLETAB CHROME.TABS.CREATE CHROME.TABS.ONUPDATED", "source_files": [ + "background.html", "screenshot.html", - "manifest.json", "screenshot.js", - "background.html" + "manifest.json" ], "path": "examples\/api\/tabs\/screenshot\/", "api_calls": [ @@ -1223,8 +1223,8 @@ "search_string": "TYPED URL HISTORY READS YOUR HISTORY, AND SHOWS THE TOP TEN PAGES YOU GO TO BY TYPING THE URL. BROWSER_ACTION HISTORY TABS CHROME.HISTORY.GETVISITS CHROME.HISTORY.SEARCH CHROME.TABS.CREATE", "source_files": [ "typedUrls.html", - "manifest.json", - "typedUrls.js" + "typedUrls.js", + "manifest.json" ], "path": "examples\/api\/history\/showHistory\/", "api_calls": [ diff --git a/chrome/common/extensions/docs/tabs.html b/chrome/common/extensions/docs/tabs.html index d9607d0..0e4786b 100644 --- a/chrome/common/extensions/docs/tabs.html +++ b/chrome/common/extensions/docs/tabs.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -454,6 +469,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -551,6 +572,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -603,10 +630,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -661,6 +700,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -741,6 +786,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -826,6 +877,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -925,10 +982,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -987,6 +1056,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1139,6 +1214,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1191,6 +1272,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1243,6 +1330,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1295,10 +1388,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1353,6 +1458,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1433,6 +1544,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1516,6 +1633,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1570,6 +1693,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1650,6 +1779,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1734,6 +1869,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1831,6 +1972,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1883,6 +2030,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1935,10 +2088,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1991,6 +2156,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2107,6 +2278,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2161,6 +2338,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2243,6 +2426,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2326,6 +2515,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2380,6 +2575,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2473,6 +2674,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2557,6 +2764,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2639,6 +2852,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2722,6 +2941,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2776,6 +3001,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2858,6 +3089,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2942,6 +3179,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3039,6 +3282,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3091,6 +3340,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3143,10 +3398,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3199,6 +3466,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3316,6 +3589,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3415,6 +3694,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3467,10 +3752,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3525,6 +3822,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3605,6 +3908,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3690,6 +3999,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3744,6 +4059,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -3861,6 +4182,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3915,6 +4242,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3969,6 +4302,75 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div> + <h5>Parameters</h5> + <dl> + <div> + <div> + <dt> + <var>response</var> + <em> + + <!-- TYPE --> + <div style="display:inline"> + ( + <span class="optional" style="display: none; ">optional</span> + <span class="enum" style="display: none; ">enumerated</span> + <span id="typeTemplate"> + <span style="display: none; "> + <a> Type</a> + </span> + <span> + <span style="display: none; "> + array of <span><span></span></span> + </span> + <span>any</span> + <span style="display: none; "></span> + </span> + </span> + ) + </div> + + </em> + </dt> + <dd class="todo" style="display: none; "> + Undocumented. + </dd> + <dd>The JSON response object sent by the handler of the request.</dd> + <dd style="display: none; "> + This parameter was added in version + <b><span></span></b>. + You must omit this parameter in earlier versions, + and you may omit it in any version. If you require this + parameter, the manifest key + <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a> + can ensure that your extension won't be run in an earlier browser version. + </dd> + + <!-- OBJECT PROPERTIES --> + <dd style="display: none; "> + <dl> + <div> + <div> + </div> + </div> + </dl> + </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + + </div> + </div> + </dl> + </div> + </dd> + </div> </div> </dl> @@ -4049,6 +4451,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -4135,6 +4543,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4236,6 +4650,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4290,10 +4710,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4348,6 +4780,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -4428,6 +4866,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -4522,6 +4966,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4623,6 +5073,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4677,10 +5133,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -4754,6 +5222,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -4829,6 +5303,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4930,6 +5410,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -4984,10 +5470,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -5063,6 +5561,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5164,6 +5668,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5218,6 +5728,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5272,10 +5788,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -5351,6 +5879,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -5424,6 +5958,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5523,10 +6063,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -5602,6 +6154,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5699,6 +6257,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5751,10 +6315,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5807,6 +6383,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -5924,6 +6506,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -5976,6 +6564,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -6028,6 +6622,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -6080,6 +6680,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -6132,6 +6738,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -6184,6 +6796,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -6236,6 +6854,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -6288,6 +6912,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -6340,10 +6970,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/template/api_template.html b/chrome/common/extensions/docs/template/api_template.html index 9c18e90..b7d4a76 100644 --- a/chrome/common/extensions/docs/template/api_template.html +++ b/chrome/common/extensions/docs/template/api_template.html @@ -62,8 +62,24 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd jsdisplay="isFunction($this) && $this.parameters && + $this.name != 'callback'"> + <div transclude="functionParametersTemplate"></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div jsselect="$this.parameters"> + <div transclude="valueTemplate"> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/themes.html b/chrome/common/extensions/docs/themes.html index 11bad87..f05d427 100644 --- a/chrome/common/extensions/docs/themes.html +++ b/chrome/common/extensions/docs/themes.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/tut_analytics.html b/chrome/common/extensions/docs/tut_analytics.html index 9e33d71..70ad57a 100644 --- a/chrome/common/extensions/docs/tut_analytics.html +++ b/chrome/common/extensions/docs/tut_analytics.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/tut_debugging.html b/chrome/common/extensions/docs/tut_debugging.html index ccbd6cd..4d0c7b2 100644 --- a/chrome/common/extensions/docs/tut_debugging.html +++ b/chrome/common/extensions/docs/tut_debugging.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/tut_oauth.html b/chrome/common/extensions/docs/tut_oauth.html index ff43736..5ecf246 100644 --- a/chrome/common/extensions/docs/tut_oauth.html +++ b/chrome/common/extensions/docs/tut_oauth.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/tutorials.html b/chrome/common/extensions/docs/tutorials.html index e7472a6..a243863 100644 --- a/chrome/common/extensions/docs/tutorials.html +++ b/chrome/common/extensions/docs/tutorials.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> diff --git a/chrome/common/extensions/docs/windows.html b/chrome/common/extensions/docs/windows.html index dc45141..e1eb45c 100644 --- a/chrome/common/extensions/docs/windows.html +++ b/chrome/common/extensions/docs/windows.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> @@ -444,6 +459,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> @@ -570,6 +591,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -622,6 +649,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -674,6 +707,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -726,6 +765,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -778,6 +823,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -830,6 +881,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -882,10 +939,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -940,6 +1009,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1020,6 +1095,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1105,6 +1186,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1159,6 +1246,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1241,6 +1334,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1371,10 +1470,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1429,6 +1540,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1522,6 +1639,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1606,6 +1729,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1688,6 +1817,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1772,6 +1907,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1854,6 +1995,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -1939,6 +2086,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -1993,6 +2146,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2110,6 +2269,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2209,6 +2374,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2261,6 +2432,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2313,6 +2490,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2365,10 +2548,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2423,6 +2618,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2505,6 +2706,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2597,6 +2804,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2670,6 +2883,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2743,6 +2962,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> @@ -2860,6 +3085,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2912,6 +3143,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -2964,6 +3201,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3016,6 +3259,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3068,6 +3317,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3120,6 +3375,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3183,6 +3444,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3235,6 +3502,12 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div><div> <div> @@ -3287,10 +3560,22 @@ For other examples and for help in viewing the source code, see </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd style="display: none; "> + <div></div> + </dd> + </div> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/xhr.html b/chrome/common/extensions/docs/xhr.html index e5cef88..2c70db5 100644 --- a/chrome/common/extensions/docs/xhr.html +++ b/chrome/common/extensions/docs/xhr.html @@ -79,8 +79,23 @@ </div> </dl> </dd> + + <!-- FUNCTION PARAMETERS --> + <dd> + <div></div> + </dd> + </div> <!-- /VALUE --> + <div id="functionParametersTemplate"> + <h5>Parameters</h5> + <dl> + <div> + <div> + </div> + </div> + </dl> + </div> </div> <!-- /SUBTEMPLATES --> <a id="top"></a> |