Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5083)

Unified Diff: chrome/common/extensions/docs/static/pageCapture.html

Issue 8682013: Moving the MHTML API out of experimental and renaming it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: One more sync Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/static/pageCapture.html
diff --git a/chrome/common/extensions/docs/static/experimental.savePage.html b/chrome/common/extensions/docs/static/pageCapture.html
similarity index 59%
rename from chrome/common/extensions/docs/static/experimental.savePage.html
rename to chrome/common/extensions/docs/static/pageCapture.html
index 1db39476de3e21b275032c4b637da8e25555ef5e..5d5267d82bc258b1d91a6faaeddde5af0351ba0c 100644
--- a/chrome/common/extensions/docs/static/experimental.savePage.html
+++ b/chrome/common/extensions/docs/static/pageCapture.html
@@ -1,6 +1,6 @@
<!-- BEGIN AUTHORED CONTENT -->
<p>
-The savePage API allows you to save a tab as MHTML.
+The pageCapture API allows you to save a tab as MHTML.
</p>
<p>
@@ -16,9 +16,18 @@ system and that it can only be loaded in the main frame.
<h2 id="manifest">Manifest</h2>
-<p>
-The savePage API is currently
-experimental, so you must declare the "experimental"
-permission to use it.
+
+<p>You must declare the "pageCapture" permission
+in the <a href="manifest.html">extension manifest</a>
+to use the history API.
+For example:</p>
+<pre>{
+ "name": "My extension",
+ ...
+ <b>"permissions": [
+ "pageCapture"
+ ]</b>,
+ ...
+}</pre>
<!-- END AUTHORED CONTENT -->
« no previous file with comments | « chrome/common/extensions/docs/static/experimental.savePage.html ('k') | chrome/common/extensions/extension_permission_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698