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

Side by Side Diff: chrome/common/extensions/docs/static/manifest.html

Issue 9244005: Move the `privacy` extension API out of experimental. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: License. Created 8 years, 10 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 | Annotate | Revision Log
OLDNEW
1 <div id="pageData-name" class="pageData">Formats: Manifest Files</div> 1 <div id="pageData-name" class="pageData">Formats: Manifest Files</div>
2 <div id="pageData-showTOC" class="pageData">true</div> 2 <div id="pageData-showTOC" class="pageData">true</div>
3 3
4 <p> 4 <p>
5 Every extension, installable web app, and theme has a 5 Every extension, installable web app, and theme has a
6 <a href="http://www.json.org">JSON</a>-formatted manifest file, 6 <a href="http://www.json.org">JSON</a>-formatted manifest file,
7 named <code>manifest.json</code>, 7 named <code>manifest.json</code>,
8 that provides important information. 8 that provides important information.
9 </p> 9 </p>
10 10
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 <tr> 559 <tr>
560 <td> "notifications" </td> 560 <td> "notifications" </td>
561 <td> Allows the extension to use the proposed HTML5 561 <td> Allows the extension to use the proposed HTML5
562 <a href="http://www.chromium.org/developers/design-documents/desktop-noti fications/api-specification">notification API</a> 562 <a href="http://www.chromium.org/developers/design-documents/desktop-noti fications/api-specification">notification API</a>
563 without calling permission methods 563 without calling permission methods
564 (such as <code>checkPermission()</code>). 564 (such as <code>checkPermission()</code>).
565 For more information see 565 For more information see
566 <a href="notifications.html">Desktop Notifications</a>.</td> 566 <a href="notifications.html">Desktop Notifications</a>.</td>
567 </tr> 567 </tr>
568 <tr> 568 <tr>
569 <td> "privacy" </td>
570 <td> Required if the extension uses the
571 <a href="privacy.html">chrome.privacy</a> module. </td>
572 </tr>
573 <tr>
569 <td> "proxy" </td> 574 <td> "proxy" </td>
570 <td> Required if the extension uses the 575 <td> Required if the extension uses the
571 <a href="proxy.html">chrome.proxy</a> module. </td> 576 <a href="proxy.html">chrome.proxy</a> module. </td>
572 </tr> 577 </tr>
573 <tr> 578 <tr>
574 <td> "tabs" </td> 579 <td> "tabs" </td>
575 <td> Required if the extension uses the 580 <td> Required if the extension uses the
576 <a href="tabs.html">chrome.tabs</a> or 581 <a href="tabs.html">chrome.tabs</a> or
577 <a href="windows.html">chrome.windows</a> module. </td> 582 <a href="windows.html">chrome.windows</a> module. </td>
578 </tr> 583 </tr>
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
717 722
718 <pre>"manifest_version": 2</pre> 723 <pre>"manifest_version": 2</pre>
719 724
720 <p> 725 <p>
721 Future breaking changes to the extension system may require a new version 726 Future breaking changes to the extension system may require a new version
722 number. 727 number.
723 </p> 728 </p>
724 729
725 730
726 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the fact that autoupdating is free if you use them.] --> 731 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the fact that autoupdating is free if you use them.] -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698