OLD | NEW |
1 <!-- BEGIN AUTHORED CONTENT --> | 1 <!-- BEGIN AUTHORED CONTENT --> |
2 <h2 id="manifest">Manifest</h2> | 2 <h2 id="manifest">Manifest</h2> |
3 <p>You must declare the "idle" permission in your extension's manifest to use th
e idle API. | 3 <p>You must declare the "idle" permission in your extension's manifest to use th
e idle API. |
4 For example: | 4 For example: |
5 </p> | 5 </p> |
6 <pre>{ | 6 <pre>{ |
7 "name": "My extension", | 7 "name": "My extension", |
8 ... | 8 ... |
9 <b>"permissions": [ | 9 <b>"permissions": [ |
10 "idle" | 10 "idle" |
11 ]</b>, | 11 ]</b>, |
12 ... | 12 ... |
13 }</pre> | 13 }</pre> |
14 <!-- END AUTHORED CONTENT --> | 14 <!-- END AUTHORED CONTENT --> |
OLD | NEW |