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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
185 <a href="fileBrowserHandler.html">fileBrowserhandler</a> module. </td> | 185 <a href="fileBrowserHandler.html">fileBrowserhandler</a> module. </td> |
186 </tr> | 186 </tr> |
187 {{/is_apps}} | 187 {{/is_apps}} |
188 {{?is_apps}} | 188 {{?is_apps}} |
189 <tr> | 189 <tr> |
190 <td id="fileSystem"> "fileSystem": ["write"] </td> | 190 <td id="fileSystem"> "fileSystem": ["write"] </td> |
191 <td> Required if the app uses the | 191 <td> Required if the app uses the |
192 <a href="fileSystem.html">fileSystem API</a> to write files.</td> | 192 <a href="fileSystem.html">fileSystem API</a> to write files.</td> |
193 </tr> | 193 </tr> |
194 {{/is_apps}} | 194 {{/is_apps}} |
| 195 {{?is_apps}} |
| 196 <tr> |
| 197 <td id="fullscreen"> "fullscreen" </td> |
| 198 <td> Allows the app to use the proposed HTML5 |
| 199 <a href="https://dvcs.w3.org/hg/fullscreen/raw-file/tip/Overview.html">fu
llscreen API</a> |
| 200 without prompting the user for permission.</td> |
| 201 </tr> |
| 202 {{/is_apps}} |
195 <tr> | 203 <tr> |
196 <td id="geolocation"> "geolocation" </td> | 204 <td id="geolocation"> "geolocation" </td> |
197 <td> Allows the extension or app to use the proposed HTML5 | 205 <td> Allows the extension or app to use the proposed HTML5 |
198 <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> | 206 <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> |
199 without prompting the user for permission. </td> | 207 without prompting the user for permission. </td> |
200 </tr> | 208 </tr> |
201 {{^is_apps}} | 209 {{^is_apps}} |
202 <tr> | 210 <tr> |
203 <td> "history" </td> | 211 <td> "history" </td> |
204 <td> Required if the extension uses the | 212 <td> Required if the extension uses the |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 </tr> | 315 </tr> |
308 <tr> | 316 <tr> |
309 <td> "webRequestBlocking" </td> | 317 <td> "webRequestBlocking" </td> |
310 <td> Required if the extension uses the | 318 <td> Required if the extension uses the |
311 <a href="webRequest.html">chrome.webRequest</a> module in a blocking | 319 <a href="webRequest.html">chrome.webRequest</a> module in a blocking |
312 fashion. </td> | 320 fashion. </td> |
313 </tr> | 321 </tr> |
314 {{/is_apps}} | 322 {{/is_apps}} |
315 </tr> | 323 </tr> |
316 </table> | 324 </table> |
OLD | NEW |