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

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

Issue 10834130: Extensions Docs Server: Doc conversion script - SVN (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: 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
OLDNEW
1 <div id="pageData-name" class="pageData">Idle</div>
2
3 <!-- BEGIN AUTHORED CONTENT -->
4 <h2 id="manifest">Manifest</h2> 1 <h2 id="manifest">Manifest</h2>
5 <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.
6 For example: 3 For example:
7 </p> 4 </p>
8 5
9 <pre>{ 6 <pre>{
10 "name": "My extension", 7 "name": "My extension",
11 ... 8 ...
12 <b>"permissions": [ 9 <b>"permissions": [
13 "idle" 10 "idle"
14 ]</b>, 11 ]</b>,
15 ... 12 ...
16 }</pre> 13 }</pre>
17
18 <!-- END AUTHORED CONTENT -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698