repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Disable view source for Developer Tools.
[chromium-blink-merge.git]
/
chrome
/
common
/
extensions
/
docs
/
templates
/
intros
/
idle.html
blob
50ffae1a8c22970058a6bff8d24f7eebffd7de43
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
data-filename
=
"manifest.json"
>
7
{
8
"name"
:
"My extension"
,
9
...
10
<b>
"permissions"
: [
11
"idle"
12
]
</b>
,
13
...
14
}
15
</pre>