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

Side by Side Diff: chrome/common/extensions/docs/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 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note: 1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note:
2 1) The <head> information in this page is significant, should be uniform 2 1) The <head> information in this page is significant, should be uniform
3 across api docs and should be edited only with knowledge of the 3 across api docs and should be edited only with knowledge of the
4 templating mechanism. 4 templating mechanism.
5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a 5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a
6 browser, it will be re-generated from the template, json schema and 6 browser, it will be re-generated from the template, json schema and
7 authored overview content. 7 authored overview content.
8 4) The <body>.innerHTML is also generated by an offline step so that this 8 4) The <body>.innerHTML is also generated by an offline step so that this
9 page may easily be indexed by search engines. 9 page may easily be indexed by search engines.
10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> 10 --><html xmlns="http://www.w3.org/1999/xhtml"><head>
(...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 <tr> 781 <tr>
782 <td> <em>match pattern</em> </td> 782 <td> <em>match pattern</em> </td>
783 <td> Specifies a <em>host permission</em>. 783 <td> Specifies a <em>host permission</em>.
784 Required if the extension wants to interact 784 Required if the extension wants to interact
785 with the code running on pages. 785 with the code running on pages.
786 Many extension capabilities, such as 786 Many extension capabilities, such as
787 <a href="xhr.html">cross-origin XMLHttpRequests</a>, 787 <a href="xhr.html">cross-origin XMLHttpRequests</a>,
788 <a href="content_scripts.html#pi">programmatically injected 788 <a href="content_scripts.html#pi">programmatically injected
789 content scripts</a>, and <a href="cookies.html">the cookies API</a> 789 content scripts</a>, and <a href="cookies.html">the cookies API</a>
790 require host permissions. For details on the syntax, see 790 require host permissions. For details on the syntax, see
791 <a href="match_patterns.html">Match Patterns</a>. 791 <a href="match_patterns.html">Match Patterns</a>. You cannot use
792 the chrome-extension:// scheme in match patterns for host permissions.
792 </td> 793 </td>
793 </tr> 794 </tr>
794 <tr id="bg"> 795 <tr id="bg">
795 <td> "background" </td> 796 <td> "background" </td>
796 <td> <p> 797 <td> <p>
797 Makes Chrome start up early and and shut down late, 798 Makes Chrome start up early and and shut down late,
798 so that apps and extensions can have a longer life. 799 so that apps and extensions can have a longer life.
799 </p> 800 </p>
800 801
801 <p> 802 <p>
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
1221 _uff=0; 1222 _uff=0;
1222 urchinTracker(); 1223 urchinTracker();
1223 } 1224 }
1224 catch(e) {/* urchinTracker not available. */} 1225 catch(e) {/* urchinTracker not available. */}
1225 </script> 1226 </script>
1226 <!-- end analytics --> 1227 <!-- end analytics -->
1227 </div> 1228 </div>
1228 </div> <!-- /gc-footer --> 1229 </div> <!-- /gc-footer -->
1229 </div> <!-- /gc-container --> 1230 </div> <!-- /gc-container -->
1230 </body></html> 1231 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698