Index: chrome/common/extensions/docs/static/manifest.html |
diff --git a/chrome/common/extensions/docs/static/manifest.html b/chrome/common/extensions/docs/static/manifest.html |
index 12f0fabd1197b522df17883b86593dbf88ae9662..94b81031b986992f802a4285a6696a1ffd81770a 100644 |
--- a/chrome/common/extensions/docs/static/manifest.html |
+++ b/chrome/common/extensions/docs/static/manifest.html |
@@ -298,8 +298,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> |
@@ -367,6 +368,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 |
+ <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> |