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

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

Issue 8662010: Rename chrome.experimental.webRequest to chrome.webRequest and chrome.webRequestBlocking (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Regenerated documentation Created 9 years 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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 Also, it doesn't currently work with wildcard subdomains such as 584 Also, it doesn't currently work with wildcard subdomains such as
585 <code>http://*.example.com</code>. 585 <code>http://*.example.com</code>.
586 </p> 586 </p>
587 </td> 587 </td>
588 <tr> 588 <tr>
589 <tr> 589 <tr>
590 <td> "webNavigation" </td> 590 <td> "webNavigation" </td>
591 <td> Required if the extension uses the 591 <td> Required if the extension uses the
592 <a href="webNavigation.html">chrome.webNavigation</a> module. </td> 592 <a href="webNavigation.html">chrome.webNavigation</a> module. </td>
593 </tr> 593 </tr>
594 <tr>
595 <td> "webRequest" </td>
596 <td> Required if the extension uses the
597 <a href="webRequest.html">chrome.webRequest</a> module. </td>
598 </tr>
599 <tr>
600 <td> "webRequestBlocking" </td>
601 <td> Required if the extension uses the
602 <a href="webRequest.html">chrome.webRequest</a> module in a blocking
603 fashion. </td>
604 </tr>
594 </tr> 605 </tr>
595 </table> 606 </table>
596 607
597 608
598 <h3 id="version">version</h3> 609 <h3 id="version">version</h3>
599 610
600 <p> 611 <p>
601 One to four dot-separated integers 612 One to four dot-separated integers
602 identifying the version of this extension. 613 identifying the version of this extension.
603 A couple of rules apply to the integers: 614 A couple of rules apply to the integers:
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
638 A missing integer is equal to zero. 649 A missing integer is equal to zero.
639 For example, 1.1.9.9999 is newer than 1.1. 650 For example, 1.1.9.9999 is newer than 1.1.
640 </p> 651 </p>
641 652
642 <p> 653 <p>
643 For more information, see 654 For more information, see
644 <a href="autoupdate.html">Autoupdating</a>. 655 <a href="autoupdate.html">Autoupdating</a>.
645 </p> 656 </p>
646 657
647 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the fact that autoupdating is free if you use them.] --> 658 <!-- [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