OLD | NEW |
1 <h1>Permission Warnings</h1> | 1 <h1>Permission Warnings</h1> |
2 | 2 |
3 | 3 |
4 <!-- | 4 <!-- |
5 NOTE: When this doc is updated, the online help should also be updated: | 5 NOTE: When this doc is updated, the online help should also be updated: |
6 http://www.google.com/support/chrome_webstore/bin/answer.py?hl=en&answer=186213 | 6 http://www.google.com/support/chrome_webstore/bin/answer.py?hl=en&answer=186213 |
7 | 7 |
8 We should periodically look at | 8 We should periodically look at |
9 http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/generated_resources.g
rd?view=markup | 9 http://src.chromium.org/viewvc/chrome/trunk/src/chrome/app/generated_resources.g
rd?view=markup |
10 to make sure that we're covering all messages. Search for | 10 to make sure that we're covering all messages. Search for |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 <code>document.execCommand()</code>: | 362 <code>document.execCommand()</code>: |
363 <ul> | 363 <ul> |
364 <li> <code>"copy"</code> </li> | 364 <li> <code>"copy"</code> </li> |
365 <li> <code>"cut"</code> </li> | 365 <li> <code>"cut"</code> </li> |
366 </ul> | 366 </ul> |
367 </td> | 367 </td> |
368 </tr> | 368 </tr> |
369 | 369 |
370 <tr> | 370 <tr> |
371 <td style="font-weight:bold"> | 371 <td style="font-weight:bold"> |
| 372 <!-- IDS_EXTENSION_PROMPT_WARNING_PRINTER_PROVIDER--> |
| 373 Add printing destinations and access any jobs you submit to them |
| 374 </td> |
| 375 <td> |
| 376 "printerProvider" permission |
| 377 </td> |
| 378 <td> |
| 379 The "printerProvider" permission is required by the |
| 380 <a href="printerProvider"><code>chrome.printerProvider</code></a> module. |
| 381 </td> |
| 382 </tr> |
| 383 |
| 384 <tr> |
| 385 <td style="font-weight:bold"> |
372 <!-- IDS_EXTENSION_PROMPT_WARNING_PRIVACY--> | 386 <!-- IDS_EXTENSION_PROMPT_WARNING_PRIVACY--> |
373 Manipulate privacy-related settings | 387 Manipulate privacy-related settings |
374 </td> | 388 </td> |
375 <td> | 389 <td> |
376 "privacy" permission | 390 "privacy" permission |
377 </td> | 391 </td> |
378 <td> | 392 <td> |
379 The "privacy" permission is required by the | 393 The "privacy" permission is required by the |
380 <a href="privacy"><code>chrome.privacy</code></a> module. | 394 <a href="privacy"><code>chrome.privacy</code></a> module. |
381 </td> | 395 </td> |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 by clicking the <b>chrome://extensions</b> page's | 485 by clicking the <b>chrome://extensions</b> page's |
472 <b>Update extensions now</b> button. | 486 <b>Update extensions now</b> button. |
473 </p> | 487 </p> |
474 | 488 |
475 <h2 id="api">API</h2> | 489 <h2 id="api">API</h2> |
476 | 490 |
477 <p> | 491 <p> |
478 You can get a list of permission warnings for any manifest with | 492 You can get a list of permission warnings for any manifest with |
479 $(ref:management.getPermissionWarningsByManifest). | 493 $(ref:management.getPermissionWarningsByManifest). |
480 </p> | 494 </p> |
OLD | NEW |