blob: db62408c36ce0da2eae1b53808f451321c5a50d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<div id="pageData-name" class="pageData">Management</div>
<!-- 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 -->
|