Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / common / extensions / docs / templates / intros / management.html
blob03befafd96cfeec77fafc6356c9d488c44b793d6
1 <h2 id="manifest">Manifest</h2>
3 <p>You must declare the "management" permission
4 in the <a href="manifest.html">extension manifest</a>
5 to use the management API.
6 For example:</p>
7 <pre data-filename="manifest.json">
9 "name": "My extension",
10 ...
11 <b>"permissions": [
12 "management"
13 ]</b>,
14 ...
15 }</pre>
17 <p>
18 $ref:management.getPermissionWarningsByManifest and
19 $ref:management.uninstallSelf do not require the management permission
20 </p>