Home | History | Annotate | Download | only in docs

Lines Matching full:href

12     <link href="css/ApiRefStyles.css" rel="stylesheet" type="text/css">
13 <link href="css/print.css" rel="stylesheet" type="text/css" media="print">
70 <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a>
114 <a href="#gc-pagecontent">Skip to page content</a>
115 <a href="#gc-toc">Skip to main navigation</a>
120 <td valign="middle"><a href="http://code.google.com/"><img src="images/code_labs_logo.gif" height="43" width="161" alt="Google Code Labs" style="border:0; margin:0;"></a></td>
145 <h1>Google Chrome Extensions (<a href="http://code.google.com/labs/">Labs</a>)</h1>
148 <a href="index.html" title="Google Chrome Extensions home page">Home</a>
151 <a href="docs.html" title="Official Google Chrome Extensions documentation">Docs</a>
154 <a href="faq.html" title="Answers to frequently asked questions about Google Chrome Extensions">FAQ</a>
157 <a href="samples.html" title="Sample extensions (with source code)">Samples</a>
160 <a href="http://groups.google.com/a/chromium.org/group/chromium-extensions" title="Google Chrome Extensions developer forum">Group</a>
169 <li><a href="getstarted.html">Getting Started</a></li>
170 <li><a href="overview.html">Overview</a></li>
171 <li><a href="whats_new.html">What's New?</a></li>
172 <li><h2><a href="devguide.html">Developer's Guide</a></h2>
176 <li><a href="browserAction.html">Browser Actions</a></li>
177 <li><a href="contextMenus.html">Context Menus</a></li>
178 <li><a href="notifications.html">Desktop Notifications</a></li>
179 <li><a href="omnibox.html">Omnibox</a></li>
180 <li><a href="options.html">Options Pages</a></li>
181 <li><a href="override.html">Override Pages</a></li>
182 <li><a href="pageAction.html">Page Actions</a></li>
187 <li><a href="bookmarks.html">Bookmarks</a></li>
188 <li><a href="cookies.html">Cookies</a></li>
189 <li><a href="events.html">Events</a></li>
190 <li><a href="history.html">History</a></li>
191 <li><a href="management.html">Management</a></li>
192 <li><a href="tabs.html">Tabs</a></li>
193 <li><a href="windows.html">Windows</a></li>
198 <li><a href="a11y.html">Accessibility</a></li>
199 <li><a href="background_pages.html">Background Pages</a></li>
201 <li><a href="xhr.html">Cross-Origin XHR</a></li>
202 <li><a href="idle.html">Idle</a></li>
203 <li><a href="i18n.html">Internationalization</a></li>
204 <li><a href="messaging.html">Message Passing</a></li>
205 <li><a href="npapi.html">NPAPI Plugins</a></li>
210 <li><a href="hosting.html">Hosting</a></li>
211 <li><a href="external_extensions.html">Other Deployment Options</a></li>
216 <li><h2><a href="apps.html">Packaged Apps</a></h2></li>
217 <li><h2><a href="tutorials.html">Tutorials</a></h2>
219 <li><a href="tut_debugging.html">Debugging</a></li>
220 <li><a href="tut_analytics.html">Google Analytics</a></li>
221 <li><a href="tut_oauth.html">OAuth</a></li>
228 <li><a href="manifest.html">Manifest Files</a></li>
229 <li><a href="match_patterns.html">Match Patterns</a></li>
232 <li><a href="permission_warnings.html">Permission Warnings</a></li>
233 <li><a href="api_index.html">chrome.* APIs</a></li>
234 <li><a href="api_other.html">Other APIs</a></li>
237 <li><h2><a href="samples.html">Samples</a></h2></li>
241 <li><a href="http://code.google.com/chrome/webstore/docs/index.html">Chrome Web Store</a></li>
242 <li><a href="http://code.google.com/chrome/apps/docs/developers_guide.html">Hosted Apps</a></li>
243 <li><a href="themes.html">Themes</a></li>
261 <a href="#registration">Manifest</a>
264 <a href="#include-exclude-globs">Include and exclude globs</a>
268 <a href="#pi">Programmatic injection</a>
275 <a href="#execution-environment">Execution environment</a>
282 <a href="#host-page-communication">Communication with the embedding page</a>
289 <a href="#security-considerations">Security considerations</a>
296 <a href="#extension-files">Referring to extension files</a>
303 <a href="#examples"> Examples </a>
310 <a href="#videos"> Videos </a>
318 <a href="#apiReference">API reference</a>
321 <a href="#properties">Properties</a>
324 <a href="#property-anchor">propertyName</a>
332 <a href="#method-anchor">methodName</a>
340 <a href="#event-anchor">eventName</a>
345 <a href="#types">Types</a>
348 <a href="#id-anchor">id</a>
360 For information on how to use experimental APIs, see the <a href="experimental.html">chrome.experimental.* APIs</a> page.
370 <a href="http://www.w3.org/TR/DOM-Level-2-HTML/">Document
383 </li><li>Find and process <a href="http://microformats.org/">microformat</a> data in the DOM
395 <a href="extension.html"><code>chrome.extension</code></a>)
404 Make <a href="xhr.html">cross-site XMLHttpRequests</a>
413 by exchanging <a href="messaging.html">messages</a>
416 <a href="#host-page-communication">communicate with web pages</a>
420 <a href="#execution-environment">execution environment</a>.
427 <a href="manifest.html">extension manifest</a>
448 <a href="manifest.html#permissions"><code>permissions</code></a> field instead,
449 as described in <a href="#pi">Programmatic injection</a>.
479 See <a href="match_patterns.html">Match Patterns</a>
510 In the case of "document_idle", the browser chooses a time to inject scripts between "document_end" and immediately after the <code><a href="http://www.whatwg.org/specs/web-apps/current-work/#handler-onload">window.onload</a></code> event fires. The exact moment of injection depends on how complex the document is and how long it is taking to load, and is optimized for page load speed.
515 already fired. In most cases, listening for the <code>onload</code> event is unnecessary for content scripts running at "document_idle" because they are guaranteed to run after the DOM is complete. If your script definitely needs to run after <code>window.onload</code>, you can check if <code>onload</code> has already fired by using the <code><a href="http://www.whatwg.org/specs/web-apps/current-work/#dom-document-readystate">document.readyState</a></code> property.</td>
529 Applied after <code>matches</code> to control the pages that this content script will be injected into. Intended to emulate the <a href="http://wiki.greasespot.net/Metadata_Block#.40include"><code>@include</code></a> Greasemonkey keyword. See <a href="#include-exclude-globs">Include and exclude globs</a> below for more details.</td>
535 Applied after <code>matches</code> to control the pages that this content script will be injected into. Intended to emulate the <a href="http://wiki.greasespot.net/Metadata_Block#.40include"><code>@exclude</code></a> Greasemonkey keyword. See <a href="#include-exclude-globs">Include and exclude globs</a> below for more details.</td>
579 <a href="xhr.html#requesting-permission">cross-origin permissions</a>
584 <a href="manifest.html#permissions">permissions</a> field.
590 <a href="tabs.html#method-executeScript"><code>executeScript()</code></a>.
592 <a href="tabs.html#method-insertCSS"><code>insertCSS()</code></a>.
598 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/browserAction/make_page_red/">make_page_red</a> example)
706 receives content from another web site (e.g., by <a href="messaging.html">asking your background page to make an
707 XMLHttpRequest</a>), be careful to filter that content for <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">cross-site
711 the HTTP content might have been corrupted by a network <a href="http://en.wikipedia.org/wiki/Man-in-the-middle_attack">"man-in-the-middle"</a>
766 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/howto/contentscript_xhr">contentscript_xhr</a> example
770 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/messaging/">examples/api/messaging</a>
776 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/browserAction/make_page_red/">make_page_red</a> and
777 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/email_this_page/">email_this_page</a>
784 <a href="samples.html">Samples</a>.
899 <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a>
968 Except as otherwise <a href="http://code.google.com/policies.html#restrictions">noted</a>,
969 the content of this page is licensed under the <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
971 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD License</a>.