Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: chrome/common/extensions/docs/server2/templates/intros/idle.html

Issue 10832042: Extensions Docs Server: Doc conversion script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: everything but svn stuff Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- BEGIN AUTHORED CONTENT -->
2 <h2 id="manifest">Manifest</h2> 1 <h2 id="manifest">Manifest</h2>
3 <p>You must declare the "idle" permission in your extension's manifest to use th e idle API. 2 <p>You must declare the "idle" permission in your extension's manifest to use th e idle API.
4 For example: 3 For example:
5 </p> 4 </p>
5
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 -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698