Chromium Code Reviews| Index: chrome/common/extensions/docs/manifest.html |
| diff --git a/chrome/common/extensions/docs/manifest.html b/chrome/common/extensions/docs/manifest.html |
| index 3dce4b3fe4582be70a717efb6ef386b156fb753b..66e8ed774abdc07d378f38d4b35eb02ba0fe4b16 100644 |
| --- a/chrome/common/extensions/docs/manifest.html |
| +++ b/chrome/common/extensions/docs/manifest.html |
| @@ -636,8 +636,9 @@ or packaged app can use. |
| <p class="note"> |
| <strong>Note:</strong> |
| Hosted apps can use the |
| -"background", "geolocation", "notifications", and "unlimitedStorage" permissions, |
| -but not any other permissions listed in this table. |
| +"background", "clipboardRead", "clipboardWrite", "geolocation", "notifications", |
| +and "unlimitedStorage" permissions, but not any other permissions listed in this |
| +table. |
| </p> |
| <table> |
| @@ -705,6 +706,19 @@ but not any other permissions listed in this table. |
| </td> |
| </tr> |
| <tr> |
| + <td> "clipboardRead" </td> |
| + <td> Required if the extension uses |
| + <code>document.execCommand('paste')</code>. </td> |
| +</tr> |
| +<tr> |
| + <td> "clipboardWrite" </td> |
| + <td> Indicates an app or extension uses |
|
kathyw
2011/05/23 20:29:57
an -> that the
(everywhere else we say "the")
|
| + <code>document.execCommand('copy')</code> or |
| + <code>document.execCommand('cut')</code>. This permission is <b>required |
| + for hosted apps</b>; it's recommended for extensions and packaged apps. |
| + </td> |
| +</tr> |
| +<tr> |
| <td> "contextMenus" </td> |
| <td> Required if the extension uses the |
| <a href="contextMenus.html">chrome.contextMenus</a> module. </td> |