summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/static/idle.html
blob: 10f7e1d5ea6677dd355286c472542d9428c11e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div id="pageData-name" class="pageData">Idle</div>

<!-- BEGIN AUTHORED CONTENT -->
<h2 id="manifest">Manifest</h2>
<p>You must declare the "idle" permission in your extension's manifest to use the idle API.
For example:
</p>

<pre>{
  "name": "My extension",
  ...
  <b>"permissions": [
    "idle"
  ]</b>,
  ...
}</pre>

<!-- END AUTHORED CONTENT -->