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

Unified Diff: chrome/common/extensions/docs/server2/templates/private/management_intro.html

Issue 10700118: Extensions Docs Server: First doc conversions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added all APIs Created 8 years, 5 months 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/server2/templates/private/management_intro.html
diff --git a/chrome/common/extensions/docs/server2/templates/private/management_intro.html b/chrome/common/extensions/docs/server2/templates/private/management_intro.html
new file mode 100644
index 0000000000000000000000000000000000000000..1a11b01584df417e8805f3753d6709f538e1cdfc
--- /dev/null
+++ b/chrome/common/extensions/docs/server2/templates/private/management_intro.html
@@ -0,0 +1,22 @@
+<!-- BEGIN AUTHORED CONTENT -->
+<p id="classSummary">
+The <code>chrome.management</code> module provides ways to manage the list of extensions/apps that are installed and running. It is particularly useful for extensions that <a href="override.html">override</a> the built-in New Tab page.
+</p>
+<h2 id="manifest">Manifest</h2>
+<p>You must declare the "management" permission
+in the <a href="manifest.html">extension manifest</a>
+to use the management API.
+For example:</p>
+<pre>{
+ "name": "My extension",
+ ...
+ <b>"permissions": [
+ "management"
+ ]</b>,
+ ...
+}</pre>
+<p>
+The one method that doesn't require the "management" permission is
+<a href="#method-getPermissionWarningsByManifest"><code>getPermissionWarningsByManifest</code></a>
+</p>
+<!-- END AUTHORED CONTENT -->

Powered by Google App Engine
This is Rietveld 408576698