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), 19 $(ref:management.uninstallSelf), and $(ref:management.getSelf) do not require 20 the management permission. 21 </p> 22