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

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

Issue 8800006: Support chrome-extension:// scheme in URLPattern. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Improved 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 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
424 <tr> 424 <tr>
425 <td> <em>match pattern</em> </td> 425 <td> <em>match pattern</em> </td>
426 <td> Specifies a <em>host permission</em>. 426 <td> Specifies a <em>host permission</em>.
427 Required if the extension wants to interact 427 Required if the extension wants to interact
428 with the code running on pages. 428 with the code running on pages.
429 Many extension capabilities, such as 429 Many extension capabilities, such as
430 <a href="xhr.html">cross-origin XMLHttpRequests</a>, 430 <a href="xhr.html">cross-origin XMLHttpRequests</a>,
431 <a href="content_scripts.html#pi">programmatically injected 431 <a href="content_scripts.html#pi">programmatically injected
432 content scripts</a>, and <a href="cookies.html">the cookies API</a> 432 content scripts</a>, and <a href="cookies.html">the cookies API</a>
433 require host permissions. For details on the syntax, see 433 require host permissions. For details on the syntax, see
434 <a href="match_patterns.html">Match Patterns</a>. 434 <a href="match_patterns.html">Match Patterns</a>. You cannot use
435 the chrome-extension:// scheme in match patterns for host permissions.
Aaron Boodman 2011/12/09 16:28:25 This line isn't necessary.
battre 2011/12/09 17:07:51 Done.
435 </td> 436 </td>
436 </tr> 437 </tr>
437 <tr id="bg"> 438 <tr id="bg">
438 <td> "background" </td> 439 <td> "background" </td>
439 <td> <p> 440 <td> <p>
440 Makes Chrome start up early and and shut down late, 441 Makes Chrome start up early and and shut down late,
441 so that apps and extensions can have a longer life. 442 so that apps and extensions can have a longer life.
442 </p> 443 </p>
443 444
444 <p> 445 <p>
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
649 A missing integer is equal to zero. 650 A missing integer is equal to zero.
650 For example, 1.1.9.9999 is newer than 1.1. 651 For example, 1.1.9.9999 is newer than 1.1.
651 </p> 652 </p>
652 653
653 <p> 654 <p>
654 For more information, see 655 For more information, see
655 <a href="autoupdate.html">Autoupdating</a>. 656 <a href="autoupdate.html">Autoupdating</a>.
656 </p> 657 </p>
657 658
658 <!-- [PENDING: Possibly: point to the store/dashboard and make a big deal of the fact that autoupdating is free if you use them.] --> 659 <!-- [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