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>
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>
200 <li><a href="content_scripts.html">Content Scripts</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="#what">The basics</a>
264 <a href="#extension-ui">Extension UIs</a>
266 <a href="#packagedapp-ui">Packaged app UIs</a>
270 <a href="#files">Files</a>
273 <a href="#relative-urls">Referring to files</a>
275 <a href="#H3-5">The manifest file</a>
279 <a href="#arch">Architecture</a>
282 <a href="#background_page">The background page</a>
284 <a href="#pages">UI pages</a>
286 <a href="#contentScripts">Content scripts</a>
290 <a href="#apis"> Using the chrome.* APIs </a>
293 <a href="#sync"> Asynchronous vs. synchronous methods </a>
295 <a href="#sync-example"> Example: Using a callback </a>
297 <a href="#chrome-more"> More details </a>
301 <a href="#pageComm">Communication between pages </a>
308 <a href="#incognito"> Saving data and incognito mode </a>
315 <a href="#now-what"> Now what? </a>
323 <a href="#apiReference">API reference</a>
326 <a href="#properties">Properties</a>
329 <a href="#property-anchor">propertyName</a>
337 <a href="#method-anchor">methodName</a>
345 <a href="#event-anchor">eventName</a>
350 <a href="#types">Types</a>
353 <a href="#id-anchor">id</a>
365 For information on how to use experimental APIs, see the <a href="experimental.html">chrome.experimental.* APIs</a> page.
375 <a href="getstarted.html">Getting Started</a> tutorial,
394 <a href="api_other.html">APIs that the browser provides to web pages</a>,
400 <a href="content_scripts.html">content scripts</a> or
401 <a href="xhr.html">cross-origin XMLHttpRequests</a>.
404 <a href="bookmarks.html">bookmarks</a>
405 and <a href="tabs.html">tabs</a>.
413 <a href="browserAction.html">browser actions</a>
414 or <a href="pageAction.html">page actions</a>.
437 This <a href="samples.html#gmail">mail extension</a>
442 This <a href="samples.html#mappy">map extension</a>
449 This <a href="samples.html#news">news extension</a>
462 See the <a href="devguide.html">Developer's Guide</a>
482 see <a href="apps.html">Packaged Apps</a>.
506 <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Developer Dashboard</a>,
509 see <a href="hosting.html">Hosting</a>.
548 <!-- [PENDING: Should mention/reflect/link to <a href="http://dev.chromium.org/developers/design-documents/extensions/i18n">internationalization</a> when it's ready.] -->
578 <a href="manifest.html">Manifest Files</a>.
642 <a href="#apis">extension APIs</a>.
650 See <a href="background_pages.html">Background Pages</a>
664 use <a href="tabs.html#method-create">chrome.tabs.create()</a>
695 See <a href="browserAction.html">Browser Actions</a>,
696 <a href="options.html">Options</a>,
697 <a href="override.html">Override Pages</a>,
698 and the <a href="#pageComm">Communication between pages</a> section
753 see <a href="content_scripts.html">Content Scripts</a>.
768 <a href="tabs.html#method-create">chrome.tabs.create()</a>
795 <a href="extension.html#method-getBackgroundPage">chrome.extensions.getBackgroundPage()</a> method:
817 (using <a href="tabs.html#method-getSelected">chrome.tabs.getSelected()</a>)
819 (using <a href="tabs.html#method-update">chrome.tabs.update()</a>).
881 <a href="api_index.html">chrome.* API docs</a>
901 <a href="extension.html"><code>chrome.extension</code></a>
917 the HTML5 <a href="http://dev.w3.org/html5/webstorage/">web storage API</a>
952 <a href="tabs.html#type-Tab">Tab</a> or
953 <a href="windows.html#type-Window">Window</a> object.
977 <li> <a href="getstarted.html">Tutorial: Getting Started</a> </li>
978 <li> <a href="tut_debugging.html">Tutorial: Debugging</a> </li>
979 <li> <a href="devguide.html">Developer's Guide</a> </li>
980 <li> <a href="http://dev.chromium.org/developers/design-documents/extensions/samples">Samples</a> </li>
981 <li> <a href="http://www.youtube.com/view_play_list?p=CA101D6A85FE9D4B">Videos</a>,
983 <a href="http://www.youtube.com/watch?v=B4M_a7xejYI&amp;feature=PlayList&amp;p=CA101D6A85FE9D4B&amp;index=6">Extension Message Passing</a>
1078 <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a>
1147 Except as otherwise <a href="http://code.google.com/policies.html#restrictions">noted</a>,
1148 the content of this page is licensed under the <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
1150 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD License</a>.