Home | History | Annotate | Download | only in static
      1 <div id="pageData-name" class="pageData">Management</div>
      2 
      3 <!-- BEGIN AUTHORED CONTENT -->
      4 <p id="classSummary">
      5 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.
      6 </p>
      7 
      8 <h2 id="manifest">Manifest</h2>
      9 
     10 <p>You must declare the "management" permission
     11 in the <a href="manifest.html">extension manifest</a>
     12 to use the management API.
     13 For example:</p>
     14 <pre>{
     15   "name": "My extension",
     16   ...
     17   <b>"permissions": [
     18     "management"
     19   ]</b>,
     20   ...
     21 }</pre>
     22 
     23 <!-- END AUTHORED CONTENT -->
     24