diff options
author | kathyw@chromium.org <kathyw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-14 16:09:47 +0000 |
---|---|---|
committer | kathyw@chromium.org <kathyw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-14 16:09:47 +0000 |
commit | 3ee613ba7a2ea41757b7465e4bce3076fac01a84 (patch) | |
tree | a5e0d60622e4e56f6043b55e2540934a106db5d3 /chrome | |
parent | 44783e24f80fb4c36f9c3c73f39681d79503a518 (diff) | |
download | chromium_src-3ee613ba7a2ea41757b7465e4bce3076fac01a84.zip chromium_src-3ee613ba7a2ea41757b7465e4bce3076fac01a84.tar.gz chromium_src-3ee613ba7a2ea41757b7465e4bce3076fac01a84.tar.bz2 |
Add "idle" permission to the manifest page.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/2897014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@52324 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/common/extensions/docs/manifest.html | 13 | ||||
-rw-r--r-- | chrome/common/extensions/docs/static/manifest.html | 13 |
2 files changed, 18 insertions, 8 deletions
diff --git a/chrome/common/extensions/docs/manifest.html b/chrome/common/extensions/docs/manifest.html index 08eca63..763a07e 100644 --- a/chrome/common/extensions/docs/manifest.html +++ b/chrome/common/extensions/docs/manifest.html @@ -550,15 +550,20 @@ The following table lists the permissions an extension can use. <a href="http://code.google.com/chrome/extensions/dev/experimental.html">chrome.experimental.* APIs</a>.</td> </tr> <tr> + <td> "geolocation" </td> + <td> Allows the extension to use the proposed HTML5 + <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> + without prompting the user for permission. </td> +</tr> +<tr> <td> "history" </td> <td> Required if the extension uses the <a href="history.html">chrome.history</a> module. </td> </tr> <tr> - <td> "geolocation" </td> - <td> Allows the extension to use the proposed HTML5 - <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> - without prompting the user for permission. </td> + <td> "idle" </td> + <td> Required if the extension uses the + <a href="idle.html">chrome.idle</a> module. </td> </tr> <tr> <td> "notifications" </td> diff --git a/chrome/common/extensions/docs/static/manifest.html b/chrome/common/extensions/docs/static/manifest.html index a79f756..0f87450 100644 --- a/chrome/common/extensions/docs/static/manifest.html +++ b/chrome/common/extensions/docs/static/manifest.html @@ -266,15 +266,20 @@ The following table lists the permissions an extension can use. <a href="http://code.google.com/chrome/extensions/dev/experimental.html">chrome.experimental.* APIs</a>.</td> </tr> <tr> + <td> "geolocation" </td> + <td> Allows the extension to use the proposed HTML5 + <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> + without prompting the user for permission. </td> +</tr> +<tr> <td> "history" </td> <td> Required if the extension uses the <a href="history.html">chrome.history</a> module. </td> </tr> <tr> - <td> "geolocation" </td> - <td> Allows the extension to use the proposed HTML5 - <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> - without prompting the user for permission. </td> + <td> "idle" </td> + <td> Required if the extension uses the + <a href="idle.html">chrome.idle</a> module. </td> </tr> <tr> <td> "notifications" </td> |