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

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

Issue 19936002: Extension docs: Cleanup after there's only one version. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 5 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 <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 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 {{^is_apps}} 191 {{^is_apps}}
192 <tr> 192 <tr>
193 <td> "cookies" </td> 193 <td> "cookies" </td>
194 <td> Required if the extension uses the 194 <td> Required if the extension uses the
195 <a href="cookies.html">chrome.cookies</a> module. </td> 195 <a href="cookies.html">chrome.cookies</a> module. </td>
196 </tr> 196 </tr>
197 {{/is_apps}} 197 {{/is_apps}}
198 <tr> 198 <tr>
199 <td> "experimental" </td> 199 <td> "experimental" </td>
200 <td> Required if the extension or app uses any 200 <td> Required if the extension or app uses any
201 <a href="http://code.google.com/chrome/extensions/dev/experimental.html"> chrome.experimental.* APIs</a>.</td> 201 <a href="experimental.html">chrome.experimental.* APIs</a>.</td>
202 </tr> 202 </tr>
203 {{^is_apps}} 203 {{^is_apps}}
204 <tr> 204 <tr>
205 <td id="fileBrowserHandler"> "fileBrowserHandler" </td> 205 <td id="fileBrowserHandler"> "fileBrowserHandler" </td>
206 <td> Required if the extension uses the 206 <td> Required if the extension uses the
207 <a href="fileBrowserHandler.html">fileBrowserhandler</a> module. </td> 207 <a href="fileBrowserHandler.html">fileBrowserhandler</a> module. </td>
208 </tr> 208 </tr>
209 {{/is_apps}} 209 {{/is_apps}}
210 {{?is_apps}} 210 {{?is_apps}}
211 <tr> 211 <tr>
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 {{?is_apps}} 416 {{?is_apps}}
417 <tr> 417 <tr>
418 <td id="webview"> "webview" </td> 418 <td id="webview"> "webview" </td>
419 <td> Required if the app uses the 419 <td> Required if the app uses the
420 <a href="webview_tag.html">Webview Tag</a> to embed live content 420 <a href="webview_tag.html">Webview Tag</a> to embed live content
421 from the web in the packaged app.</td> 421 from the web in the packaged app.</td>
422 </tr> 422 </tr>
423 {{/is_apps}} 423 {{/is_apps}}
424 </tr> 424 </tr>
425 </table> 425 </table>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698