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

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

Issue 10874057: Document the activeTab extension permission. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: aa Created 8 years, 3 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 <!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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 Required if the extension wants to interact 607 Required if the extension wants to interact
608 with the code running on pages. 608 with the code running on pages.
609 Many extension capabilities, such as 609 Many extension capabilities, such as
610 <a href="xhr.html">cross-origin XMLHttpRequests</a>, 610 <a href="xhr.html">cross-origin XMLHttpRequests</a>,
611 <a href="content_scripts.html#pi">programmatically injected 611 <a href="content_scripts.html#pi">programmatically injected
612 content scripts</a>, and <a href="cookies.html">the cookies API</a> 612 content scripts</a>, and <a href="cookies.html">the cookies API</a>
613 require host permissions. For details on the syntax, see 613 require host permissions. For details on the syntax, see
614 <a href="match_patterns.html">Match Patterns</a>. 614 <a href="match_patterns.html">Match Patterns</a>.
615 </td> 615 </td>
616 </tr> 616 </tr>
617 <tr>
618 <td> "activeTab" </td>
619 <td> <p>
620 Requests that the extension be granted permissions according to the
621 <a href="activeTab.html">activeTab</a> specification.
622 </p>
623 </td>
624 </tr>
617 <tr id="bg"> 625 <tr id="bg">
618 <td> "background" </td> 626 <td> "background" </td>
619 <td> <p> 627 <td> <p>
620 Makes Chrome start up early and and shut down late, 628 Makes Chrome start up early and and shut down late,
621 so that apps and extensions can have a longer life. 629 so that apps and extensions can have a longer life.
622 </p> 630 </p>
623 <p> 631 <p>
624 When any installed hosted app, packaged app, or extension 632 When any installed hosted app, packaged app, or extension
625 has "background" permission, Chrome runs (invisibly) 633 has "background" permission, Chrome runs (invisibly)
626 as soon as the user logs into their computer—before 634 as soon as the user logs into their computer—before
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
1041 _uff=0; 1049 _uff=0;
1042 urchinTracker(); 1050 urchinTracker();
1043 } 1051 }
1044 catch(e) {/* urchinTracker not available. */} 1052 catch(e) {/* urchinTracker not available. */}
1045 </script> 1053 </script>
1046 <!-- end analytics --> 1054 <!-- end analytics -->
1047 </div> 1055 </div>
1048 </div> <!-- /gc-footer --> 1056 </div> <!-- /gc-footer -->
1049 </div> <!-- /gc-container --> 1057 </div> <!-- /gc-container -->
1050 </body></html> 1058 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698