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

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

Issue 10874057: Document the activeTab extension permission. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tweaks 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 <h1>Formats: Manifest Files</h1> 1 <h1>Formats: Manifest Files</h1>
2 2
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 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 Required if the extension wants to interact 458 Required if the extension wants to interact
459 with the code running on pages. 459 with the code running on pages.
460 Many extension capabilities, such as 460 Many extension capabilities, such as
461 <a href="xhr.html">cross-origin XMLHttpRequests</a>, 461 <a href="xhr.html">cross-origin XMLHttpRequests</a>,
462 <a href="content_scripts.html#pi">programmatically injected 462 <a href="content_scripts.html#pi">programmatically injected
463 content scripts</a>, and <a href="cookies.html">the cookies API</a> 463 content scripts</a>, and <a href="cookies.html">the cookies API</a>
464 require host permissions. For details on the syntax, see 464 require host permissions. For details on the syntax, see
465 <a href="match_patterns.html">Match Patterns</a>. 465 <a href="match_patterns.html">Match Patterns</a>.
466 </td> 466 </td>
467 </tr> 467 </tr>
468 <tr>
469 <td> "activeTab" </td>
470 <td> Requests that the extension be granted permissions according to the
471 <a href="activeTab.html">activeTab</a> specification.
472 </td>
473 </tr>
468 <tr id="bg"> 474 <tr id="bg">
469 <td> "background" </td> 475 <td> "background" </td>
470 <td> <p> 476 <td> <p>
471 Makes Chrome start up early and and shut down late, 477 Makes Chrome start up early and and shut down late,
472 so that apps and extensions can have a longer life. 478 so that apps and extensions can have a longer life.
473 </p> 479 </p>
474 480
475 <p> 481 <p>
476 When any installed hosted app, packaged app, or extension 482 When any installed hosted app, packaged app, or extension
477 has "background" permission, Chrome runs (invisibly) 483 has "background" permission, Chrome runs (invisibly)
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
905 goes into more detail about implementing a sandboxing workflow that enables use 911 goes into more detail about implementing a sandboxing workflow that enables use
906 of libraries that would otherwise have issues executing under extension's 912 of libraries that would otherwise have issues executing under extension's
907 <a href="../extensions/contentSecurityPolicy.html">default Content Security 913 <a href="../extensions/contentSecurityPolicy.html">default Content Security
908 Policy</a>. 914 Policy</a>.
909 </p> 915 </p>
910 916
911 <p> 917 <p>
912 Sandboxed page may only be specified when using 918 Sandboxed page may only be specified when using
913 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above. 919 <a href="#manifest_version"><code>manifest_version</code></a> 2 or above.
914 </p> 920 </p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698