Home | History | Annotate | Download | only in intros
      1 <h2 id="manifest">Manifest</h2>
      2 
      3 <p>You must declare the "management" permission
      4 in the <a href="manifest">extension manifest</a>
      5 to use the management API.
      6 For example:</p>
      7 <pre data-filename="manifest.json">
      8 {
      9   "name": "My extension",
     10   ...
     11   <b>"permissions": [
     12     "management"
     13   ]</b>,
     14   ...
     15 }</pre>
     16 
     17 <p>
     18 $(ref:management.getPermissionWarningsByManifest) and
     19 $(ref:management.uninstallSelf) do not require the management permission
     20 </p>
     21