diff options
author | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-28 19:13:57 +0000 |
---|---|---|
committer | skerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-28 19:13:57 +0000 |
commit | 432c01afc9975f4a4f251eed1268e4a79e301e66 (patch) | |
tree | 0d643f8d43b7b3089c5fba590990c50a6d56c7c2 | |
parent | 5af52c96a8e35e256fd4e1d22205b2a7de7278c9 (diff) | |
download | chromium_src-432c01afc9975f4a4f251eed1268e4a79e301e66.zip chromium_src-432c01afc9975f4a4f251eed1268e4a79e301e66.tar.gz chromium_src-432c01afc9975f4a4f251eed1268e4a79e301e66.tar.bz2 |
Make the extension API docs point out the minimum version that supports an API call.
BUG=41127
TEST=none
Review URL: http://codereview.chromium.org/2812023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51013 0039d316-1c4b-4281-b951-d872f2087c98
49 files changed, 4940 insertions, 6 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 2741f2c..a721507 100644 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -1007,7 +1007,8 @@ "type": "object", "name": "options", "optional": true, - "description": "Set parameters of image capture, such as the format of the resulting image. This parameter was added in version 5.0 . Earlier versions of chrome will throw an exception unless you omit it.", + "min_version": "5.0.372.0", + "description": "Set parameters of image capture, such as the format of the resulting image.", "properties": { "format": { "type": "string", @@ -1016,7 +1017,7 @@ "description": "The format of the resulting image. Default is jpeg." }, "quality": { - "type": "integer", + "type": "integer", "name": "quality", "optional": true, "minimum": 0, @@ -1326,6 +1327,7 @@ "name": "setPopup", "type": "function", "description": "Sets the html document to be opened as a popup when the user clicks on the page action's icon.", + "min_version": "5.0.308.0", "parameters": [ { "name": "details", @@ -1415,6 +1417,7 @@ { "name": "setPopup", "type": "function", + "min_version": "5.0.316.0", "description": "Sets the html document to be opened as a popup when the user clicks on the browser action's icon.", "parameters": [ { diff --git a/chrome/common/extensions/docs/a11y.html b/chrome/common/extensions/docs/a11y.html index 9ab18dc..c05575a 100644 --- a/chrome/common/extensions/docs/a11y.html +++ b/chrome/common/extensions/docs/a11y.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -859,6 +868,13 @@ see <a href="samples.html">Samples</a>. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/api_index.html b/chrome/common/extensions/docs/api_index.html index 782f8a6..51893c9 100644 --- a/chrome/common/extensions/docs/api_index.html +++ b/chrome/common/extensions/docs/api_index.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -396,6 +405,13 @@ For more information, see the video </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/api_other.html b/chrome/common/extensions/docs/api_other.html index 8bc8ef0..8cea60f 100644 --- a/chrome/common/extensions/docs/api_other.html +++ b/chrome/common/extensions/docs/api_other.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -407,6 +416,13 @@ just as they would in any other web pages. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/autoupdate.html b/chrome/common/extensions/docs/autoupdate.html index 132f4aa..4e6b2c4 100644 --- a/chrome/common/extensions/docs/autoupdate.html +++ b/chrome/common/extensions/docs/autoupdate.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -485,6 +494,13 @@ Another option is to use the --extensions-update-frequency command-line flag to </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/background_pages.html b/chrome/common/extensions/docs/background_pages.html index ffb5735..96da509 100644 --- a/chrome/common/extensions/docs/background_pages.html +++ b/chrome/common/extensions/docs/background_pages.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -478,6 +487,13 @@ from a file named <code>image.html</code>. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/bookmarks.html b/chrome/common/extensions/docs/bookmarks.html index e2b2bf4..2641ffa 100644 --- a/chrome/common/extensions/docs/bookmarks.html +++ b/chrome/common/extensions/docs/bookmarks.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -472,6 +481,15 @@ For other examples and for help in viewing the source code, see <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> @@ -510,6 +528,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -555,6 +582,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -600,6 +636,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -645,6 +690,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -694,6 +748,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -767,6 +830,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -783,6 +855,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem" style="display: none; "> @@ -842,6 +921,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -893,6 +979,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>A single string-valued id, or an array of string-valued ids</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; "> @@ -938,6 +1033,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1022,6 +1126,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1038,6 +1151,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1091,6 +1211,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1136,6 +1265,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1220,6 +1358,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1236,6 +1383,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1287,6 +1441,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The maximum number of items to return.</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; "> @@ -1332,6 +1495,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1416,6 +1588,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1432,6 +1613,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1484,6 +1672,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1568,6 +1765,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1584,6 +1790,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem" style="display: none; "> @@ -1643,6 +1856,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1697,6 +1917,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1742,6 +1971,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1780,6 +2018,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1825,6 +2072,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1874,6 +2130,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1947,6 +2212,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1963,6 +2237,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2016,6 +2297,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2061,6 +2351,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2108,6 +2407,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2161,6 +2467,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2206,6 +2521,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2253,6 +2577,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2306,6 +2637,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2351,6 +2691,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2435,6 +2784,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2451,6 +2809,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2505,6 +2870,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2550,6 +2924,15 @@ For other examples and for help in viewing the source code, see <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> @@ -2588,6 +2971,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2633,6 +3025,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2682,6 +3083,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2755,6 +3165,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2771,6 +3190,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -2833,6 +3259,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2878,6 +3313,15 @@ For other examples and for help in viewing the source code, see <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> @@ -2916,6 +3360,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2961,6 +3414,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3031,6 +3493,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3076,6 +3547,15 @@ For other examples and for help in viewing the source code, see <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> @@ -3125,6 +3605,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3195,6 +3684,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3240,6 +3738,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3354,6 +3861,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3399,6 +3915,15 @@ For other examples and for help in viewing the source code, see <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> @@ -3437,6 +3962,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3482,6 +4016,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3527,6 +4070,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3572,6 +4124,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3642,6 +4203,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3687,6 +4257,15 @@ For other examples and for help in viewing the source code, see <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> @@ -3725,6 +4304,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3770,6 +4358,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3835,6 +4432,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>A node (either a bookmark or a folder) in the bookmark tree. Child nodes are ordered within their parent folder.</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> @@ -3871,6 +4477,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The unique identifier for the node. IDs are unique within the current profile, and they remain valid even after the browser is restarted.</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; "> @@ -3914,6 +4529,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The <code>id</code> of the parent folder. Omitted for the root node.</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; "> @@ -3957,6 +4581,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The 0-based position of this node within its parent folder.</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; "> @@ -4000,6 +4633,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL navigated to when a user clicks the bookmark. Omitted for folders.</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; "> @@ -4043,6 +4685,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The text displayed for the node.</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; "> @@ -4086,6 +4737,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>When this node was created, in milliseconds since the epoch (<code>new Date(dateAdded)</code>).</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; "> @@ -4129,6 +4789,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>When the contents of this folder last changed, in milliseconds since the epoch.</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; "> @@ -4183,6 +4852,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>An ordered list of children of this node.</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; "> diff --git a/chrome/common/extensions/docs/browserAction.html b/chrome/common/extensions/docs/browserAction.html index 80aa2f3..12f96ec 100644 --- a/chrome/common/extensions/docs/browserAction.html +++ b/chrome/common/extensions/docs/browserAction.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -542,6 +551,15 @@ For other examples and for help in viewing the source code, see <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> @@ -589,6 +607,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>An array of four integers in the range [0,255] that make up the RGBA color of the badge. For example, opaque red is <code>[255, 0, 0, 255]</code>.</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; "> @@ -632,6 +659,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Limits the change to when a particular tab is selected. Automatically resets when the tab is closed.</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; "> @@ -683,6 +719,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -735,6 +778,15 @@ For other examples and for help in viewing the source code, see <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> @@ -771,6 +823,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Any number of characters can be passed, but only about four can fit in the space.</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; "> @@ -814,6 +875,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Limits the change to when a particular tab is selected. Automatically resets when the tab is closed.</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; "> @@ -865,6 +935,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -917,6 +994,15 @@ For other examples and for help in viewing the source code, see <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> @@ -953,6 +1039,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Pixel data for an image. Must be an ImageData object (for example, from a <code>canvas</code> element).</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> @@ -996,6 +1091,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Relative path to an image in the extension to show in the browser action.</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; "> @@ -1039,6 +1143,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Limits the change to when a particular tab is selected. Automatically resets when the tab is closed.</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; "> @@ -1090,6 +1203,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1142,6 +1262,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1178,6 +1307,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Limits the change to when a particular tab is selected. Automatically resets when the tab is closed.</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; "> @@ -1221,6 +1359,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The html file to show in a popup. If set to the empty string (''), no popup is shown.</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; "> @@ -1272,6 +1419,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span>5.0.316.0</span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1324,6 +1478,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1360,6 +1523,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The string the browser action should display when moused over.</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; "> @@ -1403,6 +1575,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Limits the change to when a particular tab is selected. Automatically resets when the tab is closed.</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; "> @@ -1454,6 +1635,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -1516,6 +1704,15 @@ For other examples and for help in viewing the source code, see <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; "> diff --git a/chrome/common/extensions/docs/build/build.py b/chrome/common/extensions/docs/build/build.py index 6795754..e073a01 100755 --- a/chrome/common/extensions/docs/build/build.py +++ b/chrome/common/extensions/docs/build/build.py @@ -60,7 +60,7 @@ def RenderPage(name, test_shell): p = Popen([test_shell, "--layout-tests", generator_url], stdout=PIPE) - # the remaining output will be the content of the generated page. + # The remaining output will be the content of the generated page. result = p.stdout.read() content_start = result.find(_expected_output_preamble) @@ -75,9 +75,10 @@ def RenderPage(name, test_shell): "\nAnd open it in chrome using the file: scheme.\n" + "Look from javascript errors via the inspector.") raise Exception("test_shell returned unexpected output: " + result) - result = result[content_start:content_end + len(_expected_output_postamble)] + "\n" + postamble_length = len(_expected_output_postamble) + result = result[content_start:content_end + postamble_length] + "\n" - # remove the trailing #EOF that test shell appends to the output. + # Remove the trailing #EOF that test shell appends to the output. result = result.replace('#EOF', '') # Remove page_shell diff --git a/chrome/common/extensions/docs/content_scripts.html b/chrome/common/extensions/docs/content_scripts.html index 1617e4e..c869a31 100644 --- a/chrome/common/extensions/docs/content_scripts.html +++ b/chrome/common/extensions/docs/content_scripts.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -796,6 +805,13 @@ sending a request to its parent extension. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/devguide.html b/chrome/common/extensions/docs/devguide.html index ba3dc29..2929e72a3 100644 --- a/chrome/common/extensions/docs/devguide.html +++ b/chrome/common/extensions/docs/devguide.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -466,6 +475,13 @@ and <a href="overview.html">Overview</a>. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/docs.html b/chrome/common/extensions/docs/docs.html index 86ce57b..51c98bd 100644 --- a/chrome/common/extensions/docs/docs.html +++ b/chrome/common/extensions/docs/docs.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -472,6 +481,13 @@ The following table lists the doc locations and explains how they differ. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/events.html b/chrome/common/extensions/docs/events.html index 041464b..b0cd2dd 100644 --- a/chrome/common/extensions/docs/events.html +++ b/chrome/common/extensions/docs/events.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -388,6 +397,13 @@ bool hasListener(function callback(...)) </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.clipboard.html b/chrome/common/extensions/docs/experimental.clipboard.html index be6759d..6990276 100644 --- a/chrome/common/extensions/docs/experimental.clipboard.html +++ b/chrome/common/extensions/docs/experimental.clipboard.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -356,6 +365,15 @@ generally indicates the tab is going away. <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; "> @@ -401,6 +419,15 @@ generally indicates the tab is going away. <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; "> @@ -448,6 +475,13 @@ generally indicates the tab is going away. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -501,6 +535,15 @@ generally indicates the tab is going away. <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; "> @@ -546,6 +589,15 @@ generally indicates the tab is going away. <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; "> @@ -593,6 +645,13 @@ generally indicates the tab is going away. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -646,6 +705,15 @@ generally indicates the tab is going away. <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; "> @@ -691,6 +759,15 @@ generally indicates the tab is going away. <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; "> @@ -738,6 +815,13 @@ generally indicates the tab is going away. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.contextMenu.html b/chrome/common/extensions/docs/experimental.contextMenu.html index 35d25dc..8d8ac24 100644 --- a/chrome/common/extensions/docs/experimental.contextMenu.html +++ b/chrome/common/extensions/docs/experimental.contextMenu.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -349,6 +358,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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> @@ -385,6 +403,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The type of menu item - one of 'NORMAL', 'CHECKBOX', 'RADIO', or 'SEPARATOR'. Defaults to 'NORMAL' if not specified.</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; "> @@ -428,6 +455,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>This must be specified unless type is 'SEPARATOR'.</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; "> @@ -471,6 +507,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd> For items of type CHECKBOX or RADIO, should this be selected (RADIO) or checked (CHECKBOX)? Only one RADIO item can be selected at a time in a given group of RADIO items, with the last one to have checked == true winning.</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; "> @@ -525,6 +570,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>List of contexts this menu item will appear in. Legal values are: 'ALL', 'PAGE', 'SELECTION', 'LINK', 'EDITABLE', 'IMAGE', 'VIDEO', and 'AUDIO'. Defaults to ['PAGE'].</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; "> @@ -579,6 +633,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>By default the values you pass for the contexts parameter make an item both shown and selectable in those contexts. If you want to limit the contexts where an item is selectable (i.e. not greyed out), you put the ones you want selectable in enabledContexts and any not listed will be shown but disabled. So, for example, if you wanted an item to appear for links and images but only be enabled for links, you would set 'contexts' : ['LINK', 'IMAGE'] and 'enabledContexts' : ['LINK'].</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; "> @@ -622,6 +685,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>Function to be called back when your menu item or one of its children 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; "> @@ -665,6 +737,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The id of a parent menu item - this makes the item a child of a previously added item.</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; "> @@ -714,6 +795,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -785,6 +875,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The id of the newly created context menu item.</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; "> @@ -801,6 +900,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -852,6 +958,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The id of the context menu item to remove.</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; "> @@ -895,6 +1010,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>Called when the context menu has been removed.</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; "> @@ -942,6 +1066,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -992,6 +1123,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>Called when removal is complete.</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; "> @@ -1039,6 +1179,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1091,6 +1238,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The id of the item to update.</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; "> @@ -1134,6 +1290,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The properties to update. Accepts the same values as the create function.</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> @@ -1172,6 +1337,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -1217,6 +1391,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -1262,6 +1445,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -1318,6 +1510,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -1374,6 +1575,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -1419,6 +1629,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -1462,6 +1681,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>Note: you cannot change an item to be a child of one of it's own descendants.</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; "> @@ -1509,6 +1737,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>Called when the context menu has been updated.</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; "> @@ -1556,6 +1793,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.cookies.html b/chrome/common/extensions/docs/experimental.cookies.html index 08c2f3e..fa71eb0 100644 --- a/chrome/common/extensions/docs/experimental.cookies.html +++ b/chrome/common/extensions/docs/experimental.cookies.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -344,6 +353,15 @@ Undocumented. </dd> <dd>Details to identify the cookie being retrieved.</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> @@ -380,6 +398,15 @@ Undocumented. </dd> <dd>The URL with which the cookie to retrieve is associated. This argument may be a full URL, in which case any data following the URL path (e.g. the query string) is simply ignored. If host permissions for this URL are not specified in the manifest file, the API call will fail.</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; "> @@ -423,6 +450,15 @@ Undocumented. </dd> <dd>The name of the cookie to retrieve.</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; "> @@ -466,6 +502,15 @@ Undocumented. </dd> <dd>The ID of the cookie store in which to look for the cookie. By default, the current execution context's cookie store will be used.</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; "> @@ -515,6 +560,15 @@ <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; "> @@ -586,6 +640,15 @@ Undocumented. </dd> <dd>Contains details about the cookie. This parameter is null if no such cookie was found.</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; "> @@ -602,6 +665,13 @@ </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -653,6 +723,15 @@ Undocumented. </dd> <dd>Information to filter the cookies being retrieved.</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> @@ -689,6 +768,15 @@ Undocumented. </dd> <dd>Restricts the retrieved cookies to those that would match the given 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; "> @@ -732,6 +820,15 @@ Undocumented. </dd> <dd>Filters the cookies by name.</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; "> @@ -775,6 +872,15 @@ Undocumented. </dd> <dd>Restricts the retrieved cookies to those whose domains match or are subdomains of this one.</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; "> @@ -818,6 +924,15 @@ Undocumented. </dd> <dd>Restricts the retrieved cookies to those whose path exactly matches this string.</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; "> @@ -861,6 +976,15 @@ Undocumented. </dd> <dd>Filters the cookies by their Secure property.</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; "> @@ -904,6 +1028,15 @@ Undocumented. </dd> <dd>Filters out session vs. persistent cookies.</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; "> @@ -947,6 +1080,15 @@ Undocumented. </dd> <dd>The cookie store to retrieve cookies from. If omitted, the current execution context's cookie store will be used.</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; "> @@ -996,6 +1138,15 @@ <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; "> @@ -1078,6 +1229,15 @@ Undocumented. </dd> <dd>All the existing, unexpired cookies that match the given cookie info.</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; "> @@ -1094,6 +1254,13 @@ </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1146,6 +1313,15 @@ <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; "> @@ -1228,6 +1404,15 @@ Undocumented. </dd> <dd>All the existing cookie stores.</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; "> @@ -1244,6 +1429,13 @@ </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1294,6 +1486,15 @@ Undocumented. </dd> <dd>Information to identify the cookie to remove.</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> @@ -1330,6 +1531,15 @@ Undocumented. </dd> <dd>The URL associated with the cookie. If host permissions for this URL are not specified in the manifest file, the API call will fail.</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; "> @@ -1373,6 +1583,15 @@ Undocumented. </dd> <dd>The name of the cookie to remove.</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; "> @@ -1416,6 +1635,15 @@ Undocumented. </dd> <dd>The ID of the cookie store to look in for the cookie. If unspecified, the cookie is looked for by default in the current execution context's cookie store.</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; "> @@ -1467,6 +1695,13 @@ </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1517,6 +1752,15 @@ Undocumented. </dd> <dd>Details about the cookie being set.</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> @@ -1553,6 +1797,15 @@ Undocumented. </dd> <dd>The request-URI to associate with the setting of the cookie. This value can affect the default domain and path values of the created cookie. If host permissions for this URL are not specified in the manifest file, the API call will fail.</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; "> @@ -1596,6 +1849,15 @@ Undocumented. </dd> <dd>The name of the cookie. Empty by default if omitted.</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; "> @@ -1639,6 +1901,15 @@ Undocumented. </dd> <dd>The value of the cookie. Empty by default if omitted.</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; "> @@ -1682,6 +1953,15 @@ Undocumented. </dd> <dd>The domain of the cookie. If omitted, the cookie becomes a host-only cookie.</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; "> @@ -1725,6 +2005,15 @@ Undocumented. </dd> <dd>The path of the cookie. Defaults to the path portion of the url parameter.</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; "> @@ -1768,6 +2057,15 @@ Undocumented. </dd> <dd>Whether the cookie should be marked as Secure. Defaults to false.</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; "> @@ -1811,6 +2109,15 @@ Undocumented. </dd> <dd>Whether the cookie should be marked as HttpOnly. Defaults to false.</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; "> @@ -1854,6 +2161,15 @@ Undocumented. </dd> <dd>The expiration date of the cookie as the number of seconds since the UNIX epoch. If omitted, the cookie becomes a session cookie.</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; "> @@ -1897,6 +2213,15 @@ Undocumented. </dd> <dd>The ID of the cookie store in which to set the cookie. By default, the cookie is set in the current execution context's cookie store.</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; "> @@ -1948,6 +2273,13 @@ </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -2010,6 +2342,15 @@ <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> @@ -2046,6 +2387,15 @@ Undocumented. </dd> <dd>True if a cookie was removed.</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; "> @@ -2089,6 +2439,15 @@ Undocumented. </dd> <dd>Information about the cookie that was set or removed.</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; "> @@ -2154,6 +2513,15 @@ Undocumented. </dd> <dd>Represents information about an HTTP cookie.</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> @@ -2190,6 +2558,15 @@ Undocumented. </dd> <dd>The name of the cookie.</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; "> @@ -2233,6 +2610,15 @@ Undocumented. </dd> <dd>The value of the cookie.</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; "> @@ -2276,6 +2662,15 @@ Undocumented. </dd> <dd>The domain of the cookie (e.g. "www.google.com", "example.com").</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; "> @@ -2319,6 +2714,15 @@ Undocumented. </dd> <dd>True if the cookie is a host-only cookie (i.e. a request's host must exactly match the domain of the cookie).</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; "> @@ -2362,6 +2766,15 @@ Undocumented. </dd> <dd>The path of the cookie.</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; "> @@ -2405,6 +2818,15 @@ Undocumented. </dd> <dd>True if the cookie is marked as Secure (i.e. its scope is limited to secure channels, typically HTTPS).</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; "> @@ -2448,6 +2870,15 @@ Undocumented. </dd> <dd>True if the cookie is marked as HttpOnly (i.e. the cookie is inaccessible to client-side scripts).</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; "> @@ -2491,6 +2922,15 @@ Undocumented. </dd> <dd>True if the cookie is a session cookie, as opposed to a persistent cookie with an expiration date.</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; "> @@ -2534,6 +2974,15 @@ Undocumented. </dd> <dd>The expiration date of the cookie as the number of seconds since the UNIX epoch. Not provided for session cookies.</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; "> @@ -2577,6 +3026,15 @@ Undocumented. </dd> <dd>The ID of the cookie store containing this cookie, as provided in getAllCookieStores().</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; "> @@ -2628,6 +3086,15 @@ Undocumented. </dd> <dd>Represents a cookie store in the browser. An incognito mode window, for instance, uses a separate cookie store from a non-incognito window.</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> @@ -2664,6 +3131,15 @@ Undocumented. </dd> <dd>The unique identifier for the cookie store.</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; "> @@ -2718,6 +3194,15 @@ Undocumented. </dd> <dd>Identifiers of all the browser tabs that share this cookie store.</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; "> diff --git a/chrome/common/extensions/docs/experimental.html b/chrome/common/extensions/docs/experimental.html index f4cc686..d2689fd 100644 --- a/chrome/common/extensions/docs/experimental.html +++ b/chrome/common/extensions/docs/experimental.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -419,6 +428,13 @@ For information on the standard APIs that extensions can use, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.infobars.html b/chrome/common/extensions/docs/experimental.infobars.html index 97acc36..671e2d6 100644 --- a/chrome/common/extensions/docs/experimental.infobars.html +++ b/chrome/common/extensions/docs/experimental.infobars.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -343,6 +352,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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> @@ -379,6 +397,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The tab id for the tab to display the infobar in.</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; "> @@ -422,6 +449,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The html file that contains the infobar.</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; "> @@ -471,6 +507,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -542,6 +587,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>Contains details about the window in which the infobar was created.</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; "> @@ -558,6 +612,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/experimental.omnibox.html b/chrome/common/extensions/docs/experimental.omnibox.html index c5c6b2d..a0fc7cc 100644 --- a/chrome/common/extensions/docs/experimental.omnibox.html +++ b/chrome/common/extensions/docs/experimental.omnibox.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -357,6 +366,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -409,6 +425,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -456,6 +481,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -508,6 +540,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -555,6 +596,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -607,6 +655,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -654,6 +711,13 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -716,6 +780,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -759,6 +832,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>A callback passed to the onInputChanged event used for sending suggestions back to the browser.</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; "> @@ -825,6 +907,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> @@ -886,6 +977,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>A suggest result.</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> @@ -922,6 +1022,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The text that is put into the URL bar, and that is sent to the extension when the user chooses this entry.</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; "> @@ -965,6 +1074,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. Undocumented. </dd> <dd>The text that is displayed in the URL dropdown. Can optionally be stylized by the descriptionStyles parameter.</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; "> @@ -1021,6 +1139,15 @@ see the <a href="experimental.html">chrome.experimental.* APIs</a> page. <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; "> diff --git a/chrome/common/extensions/docs/experimental.processes.html b/chrome/common/extensions/docs/experimental.processes.html index ab9d9c8..3c58776 100644 --- a/chrome/common/extensions/docs/experimental.processes.html +++ b/chrome/common/extensions/docs/experimental.processes.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -352,6 +361,15 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ <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; "> @@ -397,6 +415,15 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ <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; "> @@ -468,6 +495,15 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ Undocumented. </dd> <dd>Details about the tab's process.</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; "> @@ -484,6 +520,13 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -567,6 +610,15 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ Undocumented. </dd> <dd>An object containing information about one of the browser's processes.</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> @@ -603,6 +655,15 @@ http://src.chromium.org/viewvc/chrome/trunk/src/chrome/test/data/extensions/api_ Undocumented. </dd> <dd>The internal ID of the process.</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; "> diff --git a/chrome/common/extensions/docs/extension.html b/chrome/common/extensions/docs/extension.html index 069b328..5186ac3 100644 --- a/chrome/common/extensions/docs/extension.html +++ b/chrome/common/extensions/docs/extension.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -375,6 +384,15 @@ For details, see Undocumented. </dd> <dd>Set for the lifetime of a callback if an ansychronous extension api has resulted in an error. If no error has occured lastError will be <var>undefined</var>.</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> @@ -411,6 +429,15 @@ For details, see Undocumented. </dd> <dd>Description of the error that has taken place.</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; "> @@ -464,6 +491,15 @@ For details, see Undocumented. </dd> <dd>True for content scripts running inside incognito tabs. Will be undefined for non-content scripts.</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> @@ -500,6 +536,15 @@ For details, see Undocumented. </dd> <dd>True if the script is in an incongito tab.</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; "> @@ -574,6 +619,15 @@ For details, see Undocumented. </dd> <dd>The extension ID of the extension you want to connect to. If omitted, default is your own extension.</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; "> @@ -619,6 +673,15 @@ For details, see <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> @@ -655,6 +718,15 @@ For details, see Undocumented. </dd> <dd>Will be passed into onConnect for extension processes that are listening for the connection event.</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; "> @@ -708,6 +780,15 @@ For details, see Undocumented. </dd> <dd>Port through which messages can be sent and received with the extension.</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; "> @@ -746,6 +827,13 @@ For details, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -807,6 +895,15 @@ For details, see <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> @@ -845,6 +942,13 @@ For details, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem" style="display: none; "> @@ -904,6 +1008,13 @@ For details, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem" style="display: none; "> @@ -963,6 +1074,13 @@ For details, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1013,6 +1131,15 @@ For details, see Undocumented. </dd> <dd>A path to a resource within an extension expressed relative to it's install directory.</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; "> @@ -1062,6 +1189,15 @@ For details, see Undocumented. </dd> <dd>The fully-qualified URL to the resource.</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; "> @@ -1100,6 +1236,13 @@ For details, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1152,6 +1295,15 @@ For details, see <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> @@ -1188,6 +1340,15 @@ For details, see Undocumented. </dd> <dd>The type of view to get. If omitted, returns all views (including background pages and tabs). Valid values: 'tab', 'infobar', 'notification', 'popup'.</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; "> @@ -1231,6 +1392,15 @@ For details, see Undocumented. </dd> <dd>The window to restrict the search to. If omitted, returns all views.</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; "> @@ -1295,6 +1465,15 @@ For details, see Undocumented. </dd> <dd>Array of global objects</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; "> @@ -1333,6 +1512,13 @@ For details, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1385,6 +1571,15 @@ For details, see Undocumented. </dd> <dd>The extension ID of the extension you want to connect to. If omitted, default is your own extension.</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; "> @@ -1430,6 +1625,15 @@ For details, see <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; "> @@ -1475,6 +1679,15 @@ For details, see <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; "> @@ -1546,6 +1759,15 @@ For details, see 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; "> @@ -1562,6 +1784,13 @@ For details, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -1624,6 +1853,15 @@ For details, see <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; "> @@ -1690,6 +1928,15 @@ For details, see <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; "> @@ -1754,6 +2001,15 @@ For details, see Undocumented. </dd> <dd>The request sent by the calling script.</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; "> @@ -1799,6 +2055,15 @@ For details, see <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; "> @@ -1842,6 +2107,15 @@ For details, see Undocumented. </dd> <dd>Function to call when you have a response. The argument should be any JSON-ifiable object, or undefined if there is no response.</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; "> @@ -1906,6 +2180,15 @@ For details, see Undocumented. </dd> <dd>The request sent by the calling script.</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; "> @@ -1951,6 +2234,15 @@ For details, see <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; "> @@ -1994,6 +2286,15 @@ For details, see Undocumented. </dd> <dd>Function to call when you have a response. The argument should be any JSON-ifiable object, or undefined if there is no response.</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; "> @@ -2055,6 +2356,15 @@ For details, see Undocumented. </dd> <dd>An object containing information about the script context that sent a message or 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> @@ -2091,6 +2401,15 @@ For details, see Undocumented. </dd> <dd>This property will <b>only</b> be present when the connection was opened from a tab or content script.</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; "> @@ -2134,6 +2453,15 @@ For details, see Undocumented. </dd> <dd>The extension ID of the extension that opened the connection.</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; "> @@ -2185,6 +2513,15 @@ For details, see Undocumented. </dd> <dd>An object which allows the addition and removal of listeners for a Chrome event.</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> @@ -2223,6 +2560,15 @@ For details, see <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; "> @@ -2268,6 +2614,15 @@ For details, see <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; "> @@ -2313,6 +2668,15 @@ For details, see <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; "> @@ -2358,6 +2722,15 @@ For details, see <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; "> @@ -2409,6 +2782,15 @@ For details, see Undocumented. </dd> <dd>An object which allows two way communication with other pages.</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> @@ -2447,6 +2829,15 @@ For details, see <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; "> @@ -2492,6 +2883,15 @@ For details, see <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; "> @@ -2537,6 +2937,15 @@ For details, see <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; "> @@ -2582,6 +2991,15 @@ For details, see <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; "> @@ -2625,6 +3043,15 @@ For details, see Undocumented. </dd> <dd>This property will <b>only</b> be present on ports passed to onConnect/onConnectExternal listeners.</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; "> diff --git a/chrome/common/extensions/docs/external_extensions.html b/chrome/common/extensions/docs/external_extensions.html index 444cc9e..47be989 100644 --- a/chrome/common/extensions/docs/external_extensions.html +++ b/chrome/common/extensions/docs/external_extensions.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -621,6 +630,13 @@ through the UI, and then uninstalling it. </p> </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/faq.html b/chrome/common/extensions/docs/faq.html index 8816af8c..733e075 100644 --- a/chrome/common/extensions/docs/faq.html +++ b/chrome/common/extensions/docs/faq.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -606,6 +615,13 @@ win,stable,#.#.###.#</pre> </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/getstarted.html b/chrome/common/extensions/docs/getstarted.html index e2fe796..a72b1b6 100644 --- a/chrome/common/extensions/docs/getstarted.html +++ b/chrome/common/extensions/docs/getstarted.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -530,6 +539,13 @@ If you don't feel like reading, try these: </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/history.html b/chrome/common/extensions/docs/history.html index 3f16317..a5cd675157 100644 --- a/chrome/common/extensions/docs/history.html +++ b/chrome/common/extensions/docs/history.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -519,6 +528,15 @@ For other examples and for help in viewing the source code, see <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> @@ -555,6 +573,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL to add.</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; "> @@ -606,6 +633,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -658,6 +692,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -705,6 +748,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -758,6 +808,15 @@ For other examples and for help in viewing the source code, see <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> @@ -794,6 +853,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Items added to history after this date, represented in milliseconds since the epoch.</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; "> @@ -837,6 +905,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Items added to history before this date, represented in milliseconds since the epoch.</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; "> @@ -886,6 +963,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -933,6 +1019,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -985,6 +1078,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1021,6 +1123,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL to remove.</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; "> @@ -1072,6 +1183,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1125,6 +1243,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1161,6 +1288,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL for which to retrieve visit information. It must be in the format as returned from a call to history.search.</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; "> @@ -1210,6 +1346,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1294,6 +1439,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1310,6 +1464,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1363,6 +1524,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1399,6 +1569,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>A free-text query to the history service. Leave empty to retrieve all pages.</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; "> @@ -1442,6 +1621,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Limit results to those visited after this date, represented in milliseconds since the epoch.</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; "> @@ -1485,6 +1673,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Limit results to those visited before this date, represented in milliseconds since the epoch.</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; "> @@ -1528,6 +1725,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The maximum number of results to retrieve. Defaults to 100.</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; "> @@ -1577,6 +1783,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1661,6 +1876,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1677,6 +1901,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -1739,6 +1970,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1775,6 +2015,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>True if all history was removed. If true, then urls will be empty.</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; "> @@ -1831,6 +2080,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1901,6 +2159,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1962,6 +2229,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>An object encapsulating one result of a history query.</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> @@ -1998,6 +2274,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The unique identifier for the item.</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; "> @@ -2041,6 +2326,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL navigated to by a user.</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; "> @@ -2084,6 +2378,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The title of the history page.</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; "> @@ -2127,6 +2430,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>When this page was last loaded, represented in milliseconds since the epoch.</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; "> @@ -2170,6 +2482,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The number of times the user has navigated to this page.</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; "> @@ -2213,6 +2534,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The number of times the user has navigated to this page by typing in the address.</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; "> @@ -2264,6 +2594,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>An object encapsulating one visit to a 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> @@ -2300,6 +2639,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The unique identifier for the item.</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; "> @@ -2343,6 +2691,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The unique identifier for this visit.</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; "> @@ -2386,6 +2743,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>When this visit occurred, represented in milliseconds since the epoch.</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; "> @@ -2429,6 +2795,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The visit_id of the referrer.</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; "> @@ -2472,6 +2847,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The <a href="#transition_types">transition type</a> for this visit from its referrer.</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; "> diff --git a/chrome/common/extensions/docs/hosting.html b/chrome/common/extensions/docs/hosting.html index dc8c1f4d..bcee424 100644 --- a/chrome/common/extensions/docs/hosting.html +++ b/chrome/common/extensions/docs/hosting.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -489,6 +498,13 @@ or try hosting the extension at another server. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/i18n-messages.html b/chrome/common/extensions/docs/i18n-messages.html index b9bc9c0..7615abb 100644 --- a/chrome/common/extensions/docs/i18n-messages.html +++ b/chrome/common/extensions/docs/i18n-messages.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -687,6 +696,13 @@ because its value is obvious from the "content" field. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/i18n.html b/chrome/common/extensions/docs/i18n.html index d633b14..ee1f0d3 100644 --- a/chrome/common/extensions/docs/i18n.html +++ b/chrome/common/extensions/docs/i18n.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -927,6 +936,15 @@ For details on calling <code>getAcceptLanguages()</code>, see the <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; "> @@ -1009,6 +1027,15 @@ For details on calling <code>getAcceptLanguages()</code>, see the Undocumented. </dd> <dd>Array of the accept languages of the browser, such as en-US,en,zh-CN</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; "> @@ -1025,6 +1052,13 @@ For details on calling <code>getAcceptLanguages()</code>, see the </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1076,6 +1110,15 @@ For details on calling <code>getAcceptLanguages()</code>, see the Undocumented. </dd> <dd>The name of the message, as specified in the <a href="i18n-messages.html"><code>messages.json</code></a> file.</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; "> @@ -1119,6 +1162,15 @@ For details on calling <code>getAcceptLanguages()</code>, see the Undocumented. </dd> <dd>1 - 9 substitution strings, if the message requires 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; "> @@ -1168,6 +1220,15 @@ For details on calling <code>getAcceptLanguages()</code>, see the Undocumented. </dd> <dd>Message localized for current locale.</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; "> @@ -1206,6 +1267,13 @@ For details on calling <code>getAcceptLanguages()</code>, see the </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/index.html b/chrome/common/extensions/docs/index.html index 37abbf8..71470c6 100644 --- a/chrome/common/extensions/docs/index.html +++ b/chrome/common/extensions/docs/index.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -474,6 +483,13 @@ and subscribe to the </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/manifest.html b/chrome/common/extensions/docs/manifest.html index ab5cd1c..e962541 100644 --- a/chrome/common/extensions/docs/manifest.html +++ b/chrome/common/extensions/docs/manifest.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -713,6 +722,13 @@ For more information, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/match_patterns.html b/chrome/common/extensions/docs/match_patterns.html index 50e207f..167c589 100644 --- a/chrome/common/extensions/docs/match_patterns.html +++ b/chrome/common/extensions/docs/match_patterns.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -532,6 +541,13 @@ Here are some examples of <em>invalid</em> pattern matches: </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/messaging.html b/chrome/common/extensions/docs/messaging.html index b1a17de..3cf458c 100644 --- a/chrome/common/extensions/docs/messaging.html +++ b/chrome/common/extensions/docs/messaging.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -635,6 +644,13 @@ For more examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/notifications.html b/chrome/common/extensions/docs/notifications.html index 37a178c..dafafb5 100644 --- a/chrome/common/extensions/docs/notifications.html +++ b/chrome/common/extensions/docs/notifications.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -453,6 +462,13 @@ see <a href="samples.html">Samples</a>. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/npapi.html b/chrome/common/extensions/docs/npapi.html index da77ef5..027405f 100644 --- a/chrome/common/extensions/docs/npapi.html +++ b/chrome/common/extensions/docs/npapi.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -439,6 +448,13 @@ avoid making your NPAPI plugin public whenever possible. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/options.html b/chrome/common/extensions/docs/options.html index 5124fc2..02c7fc5 100644 --- a/chrome/common/extensions/docs/options.html +++ b/chrome/common/extensions/docs/options.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -431,6 +440,13 @@ Favorite Color: </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/override.html b/chrome/common/extensions/docs/override.html index 34f534b..43fa884 100644 --- a/chrome/common/extensions/docs/override.html +++ b/chrome/common/extensions/docs/override.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -529,6 +538,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/overview.html b/chrome/common/extensions/docs/overview.html index d44b302..50fa02a 100644 --- a/chrome/common/extensions/docs/overview.html +++ b/chrome/common/extensions/docs/overview.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -745,6 +754,13 @@ Here are some ideas for where to go next: </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/packaging.html b/chrome/common/extensions/docs/packaging.html index 28c8f52..7e8cf49 100644 --- a/chrome/common/extensions/docs/packaging.html +++ b/chrome/common/extensions/docs/packaging.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -528,6 +537,13 @@ See the following page for details: </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/pageAction.html b/chrome/common/extensions/docs/pageAction.html index 82dad8b..717509a 100644 --- a/chrome/common/extensions/docs/pageAction.html +++ b/chrome/common/extensions/docs/pageAction.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -478,6 +487,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The id of the tab for which you want to modify the page action.</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; "> @@ -525,6 +543,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -577,6 +602,15 @@ For other examples and for help in viewing the source code, see <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> @@ -613,6 +647,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The id of the tab for which you want to modify the page action.</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; "> @@ -656,6 +699,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Pixel data for an image. Must be an ImageData object (for example, from a canvas element).</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> @@ -699,6 +751,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Relative path to an image in the extension to show in the browser action.</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; "> @@ -742,6 +803,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd><b>Deprecated.</b> The zero-based index into the <b>icons</b> vector specified in the manifest.</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; "> @@ -793,6 +863,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -845,6 +922,15 @@ For other examples and for help in viewing the source code, see <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> @@ -881,6 +967,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The id of the tab for which you want to modify the page action.</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; "> @@ -924,6 +1019,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The html file to show in a popup. If set to the empty string (''), no popup is shown.</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; "> @@ -975,6 +1079,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span>5.0.308.0</span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1027,6 +1138,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1063,6 +1183,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The id of the tab for which you want to modify the page action.</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; "> @@ -1106,6 +1235,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The tooltip string.</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; "> @@ -1157,6 +1295,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1207,6 +1352,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The id of the tab for which you want to modify the page action.</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; "> @@ -1254,6 +1408,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -1316,6 +1477,15 @@ For other examples and for help in viewing the source code, see <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; "> diff --git a/chrome/common/extensions/docs/samples.html b/chrome/common/extensions/docs/samples.html index e74c02d..4875bef 100644 --- a/chrome/common/extensions/docs/samples.html +++ b/chrome/common/extensions/docs/samples.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -505,6 +514,13 @@ put a star by bug <a href="http://code.google.com/p/chromium/issues/detail?id=25 </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/tabs.html b/chrome/common/extensions/docs/tabs.html index 27d2d37..9d148da 100644 --- a/chrome/common/extensions/docs/tabs.html +++ b/chrome/common/extensions/docs/tabs.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -417,6 +426,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The target window. Defaults to the <a href="windows.html#current-window">current window</a>.</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; "> @@ -459,7 +477,16 @@ For other examples and for help in viewing the source code, see <dd class="todo" style="display: none; "> Undocumented. </dd> - <dd>Set parameters of image capture, such as the format of the resulting image. This parameter was added in version 5.0 . Earlier versions of chrome will throw an exception unless you omit it.</dd> + <dd>Set parameters of image capture, such as the format of the resulting image.</dd> + <dd> + This parameter was added in version + <b><span>5.0.372.0</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> @@ -496,6 +523,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The format of the resulting image. Default is jpeg.</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; "> @@ -539,6 +575,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>When format is 'jpeg', controls the quality of the resulting image. This value is ignored for PNG images. As quality is decreased, the resulting image will have more visual artifacts, and the number of bytes needed to store it will decrease.</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; "> @@ -588,6 +633,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -659,6 +713,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>A data URL which encodes an image of the visible area of the captured tab. May be assigned to the 'src' property of an HTML Image element for display.</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; "> @@ -675,6 +738,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -728,6 +798,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -773,6 +852,15 @@ For other examples and for help in viewing the source code, see <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> @@ -809,6 +897,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Will be passed into onConnect for content scripts that are listening for the connection event.</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; "> @@ -862,6 +959,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>A port that can be used to communicate with the content scripts running in the specified tab.</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; "> @@ -900,6 +1006,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -953,6 +1066,15 @@ For other examples and for help in viewing the source code, see <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> @@ -989,6 +1111,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The window to create the new tab in. Defaults to the <a href="windows.html#current-window">current window</a>.</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; "> @@ -1032,6 +1163,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The position the tab should take in the window. The provided value will be clamped to between zero and the number of tabs in the window.</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; "> @@ -1075,6 +1215,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL to navigate the tab to initially. Fully-qualified URLs must include a scheme (i.e. 'http://www.google.com', not 'www.google.com'). Relative URLs will be relative to the current page within the extension. Defaults to the New Tab Page.</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; "> @@ -1118,6 +1267,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Whether the tab should become the selected tab in the window. Defaults to <var>true</var></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; "> @@ -1167,6 +1325,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1238,6 +1405,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Details about the created tab. Will contain the ID of the new tab.</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; "> @@ -1254,6 +1430,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1305,6 +1488,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Defaults to the selected tab of the <a href="windows.html#current-window">current window</a>.</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; "> @@ -1350,6 +1542,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1421,6 +1622,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>An ISO language code such as <code>en</code> or <code>fr</code>. For a complete list of languages supported by this method, see <a href="http://src.chromium.org/viewvc/chrome/trunk/src/third_party/cld/languages/internal/languages.cc">kLanguageInfoTable</a>. The 2nd to 4th columns will be checked and the first non-NULL value will be returned except for Simplified Chinese for which zh-CN will be returned. For an unknown language, <code>und</code> will be returned.</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; "> @@ -1437,6 +1647,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1489,6 +1706,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The ID of the tab in which to run the script; defaults to the selected tab of the current window.</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; "> @@ -1532,6 +1758,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Details of the script to run. Either the code or the file property must be set, but both may not be set at the same time.</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> @@ -1568,6 +1803,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>JavaScript code to execute.</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; "> @@ -1611,6 +1855,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>JavaScript file to execute.</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; "> @@ -1654,6 +1907,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>If allFrames is true, this function injects script into all frames of current page. By default, it's false and script is injected only into the top main 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; "> @@ -1701,6 +1963,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Called after all the JavaScript has been executed.</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; "> @@ -1748,6 +2019,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1801,6 +2079,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1846,6 +2133,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1919,6 +2215,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1935,6 +2240,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1986,6 +2298,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Defaults to the <a href="windows.html#current-window">current window</a>.</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; "> @@ -2031,6 +2352,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2115,6 +2445,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2131,6 +2470,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2183,6 +2529,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2256,6 +2611,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2272,6 +2636,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2323,6 +2694,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Defaults to the <a href="windows.html#current-window">current window</a>.</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; "> @@ -2368,6 +2748,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2441,6 +2830,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2457,6 +2855,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2509,6 +2914,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The ID of the tab in which to insert the CSS; defaults to the selected tab of the current window.</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; "> @@ -2552,6 +2966,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Details of the CSS text to insert. Either the code or the file property must be set, but both may not be set at the same time.</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> @@ -2588,6 +3011,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>CSS code to be injected.</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; "> @@ -2631,6 +3063,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>CSS file to be injected.</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; "> @@ -2674,6 +3115,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>If allFrames is true, this function injects CSS text into all frames of current page. By default, it's false and CSS is injected only into the top main 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; "> @@ -2721,6 +3171,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Called when all the CSS has been inserted.</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; "> @@ -2768,6 +3227,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -2822,6 +3288,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2867,6 +3342,15 @@ For other examples and for help in viewing the source code, see <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> @@ -2903,6 +3387,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Defaults to the window the tab is currently in.</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; "> @@ -2946,6 +3439,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The position to move the window to. The provided value will be clamped to between zero and the number of tabs in the window.</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; "> @@ -2995,6 +3497,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3066,6 +3577,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Details about the moved tab.</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; "> @@ -3082,6 +3602,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -3135,6 +3662,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3180,6 +3716,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3227,6 +3772,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -3281,6 +3833,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3326,6 +3887,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3371,6 +3941,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3442,6 +4021,15 @@ For other examples and for help in viewing the source code, see 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; "> @@ -3458,6 +4046,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -3512,6 +4107,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3557,6 +4161,15 @@ For other examples and for help in viewing the source code, see <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> @@ -3595,6 +4208,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3640,6 +4262,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3689,6 +4320,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3760,6 +4400,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Details about the updated tab.</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; "> @@ -3776,6 +4425,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -3838,6 +4494,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3883,6 +4548,15 @@ For other examples and for help in viewing the source code, see <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> @@ -3921,6 +4595,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -3966,6 +4649,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4034,6 +4726,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Details of the tab that was created.</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; "> @@ -4100,6 +4801,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4145,6 +4855,15 @@ For other examples and for help in viewing the source code, see <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> @@ -4183,6 +4902,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4228,6 +4956,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4298,6 +5035,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4343,6 +5089,15 @@ For other examples and for help in viewing the source code, see <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> @@ -4381,6 +5136,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4426,6 +5190,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4471,6 +5244,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4541,6 +5323,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4605,6 +5396,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The ID of the tab that has become selected.</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; "> @@ -4650,6 +5450,15 @@ For other examples and for help in viewing the source code, see <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> @@ -4686,6 +5495,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The ID of the window the selected tab changed inside of.</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; "> @@ -4756,6 +5574,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -4799,6 +5626,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Lists the changes to the state of the tab that was updated.</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> @@ -4835,6 +5671,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The status of the tab. Can be either <em>loading</em> or <em>complete</em>.</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; "> @@ -4878,6 +5723,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Only specified if the tab's URL changed.</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; "> @@ -4925,6 +5779,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Gives the state of the tab that was updated.</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; "> @@ -4988,6 +5851,15 @@ For other examples and for help in viewing the source code, see <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> @@ -5024,6 +5896,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The ID of the tab. Tab IDs are unique within a browser session.</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; "> @@ -5067,6 +5948,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The zero-based index of the tab within its window.</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; "> @@ -5110,6 +6000,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The ID of the window the tab is contained within.</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; "> @@ -5153,6 +6052,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Whether the tab is selected.</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; "> @@ -5196,6 +6104,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL the tab is displaying.</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; "> @@ -5239,6 +6156,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The title of the tab. This may not be available if the tab is loading.</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; "> @@ -5282,6 +6208,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL of the tab's favicon. This may not be available if the tab is loading.</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; "> @@ -5325,6 +6260,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Either <em>loading</em> or <em>complete</em>.</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; "> @@ -5368,6 +6312,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Whether the tab is in an incognito window.</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; "> diff --git a/chrome/common/extensions/docs/template/api_template.html b/chrome/common/extensions/docs/template/api_template.html index c9cbcbc..90cda98 100644 --- a/chrome/common/extensions/docs/template/api_template.html +++ b/chrome/common/extensions/docs/template/api_template.html @@ -43,6 +43,15 @@ jsvalues=".innerHTML:$this.description"> Description of this parameter from the json schema. </dd> + <dd jsdisplay="$this.min_version"> + This parameter was added in version + <b><span jscontent="$this.min_version"></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 jsdisplay="shouldExpandObject($this)"> @@ -342,6 +351,13 @@ </div> </div> + <!-- MIN_VERSION --> + <p jsdisplay="min_version" > + This function was added in version <b><span jscontent="$this.min_version"></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/themes.html b/chrome/common/extensions/docs/themes.html index fd849fc..d13bcaf 100644 --- a/chrome/common/extensions/docs/themes.html +++ b/chrome/common/extensions/docs/themes.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -500,6 +509,13 @@ Community-written documentation to help you write themes is here: </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/tut_analytics.html b/chrome/common/extensions/docs/tut_analytics.html index 05e9d2e..ac215f2 100644 --- a/chrome/common/extensions/docs/tut_analytics.html +++ b/chrome/common/extensions/docs/tut_analytics.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -568,6 +577,13 @@ extension.</p> </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/tut_debugging.html b/chrome/common/extensions/docs/tut_debugging.html index 710460e..56d3b56 100644 --- a/chrome/common/extensions/docs/tut_debugging.html +++ b/chrome/common/extensions/docs/tut_debugging.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -615,6 +624,13 @@ of Getting Started. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/tut_oauth.html b/chrome/common/extensions/docs/tut_oauth.html index 492acd5..bff4481 100644 --- a/chrome/common/extensions/docs/tut_oauth.html +++ b/chrome/common/extensions/docs/tut_oauth.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -558,6 +567,13 @@ Sample extensions that use these techniques are available in the Chromium source </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/tutorials.html b/chrome/common/extensions/docs/tutorials.html index 9fd922d..de7a366 100644 --- a/chrome/common/extensions/docs/tutorials.html +++ b/chrome/common/extensions/docs/tutorials.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -371,6 +380,13 @@ more specialized topics: </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> diff --git a/chrome/common/extensions/docs/windows.html b/chrome/common/extensions/docs/windows.html index e0ad4cf..b1d7f76 100644 --- a/chrome/common/extensions/docs/windows.html +++ b/chrome/common/extensions/docs/windows.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -407,6 +416,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The windowId value that represents the absence of a chrome browser window.</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; "> @@ -479,6 +497,15 @@ For other examples and for help in viewing the source code, see <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> @@ -515,6 +542,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The URL to navigate the first tab to. Fully-qualified URLs must include a scheme (i.e. 'http://www.google.com', not 'www.google.com'). Relative URLs will be relative to the current page within the extension. Defaults to the New Tab Page.</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; "> @@ -558,6 +594,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The number of pixels to position the new window from the left edge of the screen. If not specified, the new window is offset naturally from the last focusd window.</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; "> @@ -601,6 +646,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The number of pixels to position the new window from the top edge of the screen. If not specified, the new window is offset naturally from the last focusd window.</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; "> @@ -644,6 +698,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The width in pixels of the new window. If not specified defaults to a natural width.</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; "> @@ -687,6 +750,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The height in pixels of the new window. If not specified defaults to a natural height.</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; "> @@ -730,6 +802,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Whether the new window should be an incognito window.</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; "> @@ -773,6 +854,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Specifies what type of browser window to create.</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; "> @@ -822,6 +912,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -893,6 +992,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Contains details about the created window.</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; "> @@ -909,6 +1017,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -962,6 +1077,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1007,6 +1131,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1080,6 +1213,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1096,6 +1238,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1149,6 +1298,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1185,6 +1343,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>If true, each window object will have a <var>tabs</var> property that contains a list of the <a href="tabs.html#type-Tab">Tab</a> objects for that window.</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; "> @@ -1234,6 +1401,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1318,6 +1494,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1334,6 +1519,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1386,6 +1578,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1459,6 +1660,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1475,6 +1685,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1527,6 +1744,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1600,6 +1826,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1616,6 +1851,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1669,6 +1911,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1714,6 +1965,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1761,6 +2021,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div><div class="apiItem"> @@ -1815,6 +2082,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -1860,6 +2136,15 @@ For other examples and for help in viewing the source code, see <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> @@ -1896,6 +2181,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The offset from the left edge of the screen to move the window to in pixels.</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; "> @@ -1939,6 +2233,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The offset from the top edge of the screen to move the window to in pixels.</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; "> @@ -1982,6 +2285,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The width to resize the window to in pixels.</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; "> @@ -2025,6 +2337,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The height to resize the window to in pixels.</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; "> @@ -2074,6 +2395,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2147,6 +2477,15 @@ For other examples and for help in viewing the source code, see <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; "> @@ -2163,6 +2502,13 @@ For other examples and for help in viewing the source code, see </div> </div> + <!-- MIN_VERSION --> + <p style="display: none; "> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> @@ -2223,6 +2569,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Details of the window that was created.</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; "> @@ -2287,6 +2642,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>ID of the newly focused window.</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; "> @@ -2351,6 +2715,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>ID of the removed window.</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; "> @@ -2414,6 +2787,15 @@ For other examples and for help in viewing the source code, see <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> @@ -2450,6 +2832,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The ID of the window. Window IDs are unique within a browser session.</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; "> @@ -2493,6 +2884,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Whether the window is currently the focused window.</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; "> @@ -2536,6 +2936,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The offset of the window from the top edge of the screen in pixels.</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; "> @@ -2579,6 +2988,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The offset of the window from the left edge of the screen in pixels.</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; "> @@ -2622,6 +3040,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The width of the window in pixels.</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; "> @@ -2665,6 +3092,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The height of the window in pixels.</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; "> @@ -2719,6 +3155,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Array of <a href="tabs.html#type-Tab">Tab</a> objects representing the current tabs in the window.</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; "> @@ -2762,6 +3207,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>Whether the window is incognito.</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; "> @@ -2805,6 +3259,15 @@ For other examples and for help in viewing the source code, see Undocumented. </dd> <dd>The type of browser window this is.</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; "> diff --git a/chrome/common/extensions/docs/xhr.html b/chrome/common/extensions/docs/xhr.html index b2674f3..c04f417 100644 --- a/chrome/common/extensions/docs/xhr.html +++ b/chrome/common/extensions/docs/xhr.html @@ -59,6 +59,15 @@ <dd> Description of this parameter from the json schema. </dd> + <dd> + 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> @@ -501,6 +510,13 @@ prefer HTTPS whenever possible. </div> </div> + <!-- MIN_VERSION --> + <p> + This function was added in version <b><span></span></b>. + If you require this function, 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. + </p> </div> <!-- /description --> </div> <!-- /apiItem --> |