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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/declare_permissions.html

Issue 61733018: Docserver: Update to the latest version of handlebar. Lots of re-syntaxifying. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments, rebase Created 7 years, 1 month 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 <h1>Declare Permissions</h1> 1 <h1>Declare Permissions</h1>
2 2
3 <p> 3 <p>
4 To use most chrome.* APIs, 4 To use most chrome.* APIs,
5 your extension or app must declare its intent in the 5 your extension or app must declare its intent in the
6 "permissions" field of the 6 "permissions" field of the
7 <a href="manifest.html">manifest</a>. 7 <a href="manifest.html">manifest</a>.
8 Each permission can be either one of a list of known strings 8 Each permission can be either one of a list of known strings
9 (such as "geolocation") 9 (such as "geolocation")
10 or a <a href="match_patterns.html">match pattern</a> 10 or a <a href="match_patterns.html">match pattern</a>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 <p> 52 <p>
53 The following table lists the currently available permissions: 53 The following table lists the currently available permissions:
54 </p> 54 </p>
55 55
56 <table> 56 <table>
57 <tr> 57 <tr>
58 <th>Permission</th> 58 <th>Permission</th>
59 <th>Description</th> 59 <th>Description</th>
60 </tr> 60 </tr>
61 {{#permissions}} 61 {{#p:permissions}}
62 <tr id="{{anchor}}"> 62 <tr id="{{p.anchor}}">
63 <td> 63 <td>
64 <code>"{{name}}"</code> 64 <code>"{{p.name}}"</code>
65 </td> 65 </td>
66 <td> 66 <td>
67 {{+description platform:platform name:name}} 67 {{+p.description platform:platform name:p.name/}}
68 </td> 68 </td>
69 </tr> 69 </tr>
70 {{/permissions}} 70 {{/permissions}}
71 </table> 71 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698