OLD | NEW |
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 Loading... |
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> |
OLD | NEW |