Home | History | Annotate | Download | only in intros
      1 <h2 id="manifest">Manifest</h2>
      2 <p>You must declare the "idle" permission in your extension's manifest to use the idle API.
      3 For example:
      4 </p>
      5 
      6 <pre>{
      7   "name": "My extension",
      8   ...
      9   <b>"permissions": [
     10     "idle"
     11   ]</b>,
     12   ...
     13 }</pre>
     14