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>
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>
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="#overview"> Field summary </a>
268 <a href="#H2-1">Field details</a>
271 <a href="#app">app</a>
273 <a href="#default_locale">default_locale</a>
275 <a href="#description">description</a>
277 <a href="#homepage_url">homepage_url</a>
279 <a href="#icons">icons</a>
281 <a href="#incognito">incognito</a>
283 <a href="#key">key</a>
285 <a href="#minimum_chrome_version">minimum_chrome_version</a>
287 <a href="#name">name</a>
289 <a href="#permissions">permissions</a>
291 <a href="#version">version</a>
296 <a href="#apiReference">API reference</a>
299 <a href="#properties">Properties</a>
302 <a href="#property-anchor">propertyName</a>
310 <a href="#method-anchor">methodName</a>
318 <a href="#event-anchor">eventName</a>
323 <a href="#types">Types</a>
326 <a href="#id-anchor">id</a>
338 For information on how to use experimental APIs, see the <a href="experimental.html">chrome.experimental.* APIs</a> page.
347 <a href="http://www.json.org">JSON</a>-formatted manifest file,
363 "<a href="#name">name</a>": "<em>My Extension</em>",
364 "<a href="#version">version</a>": "<em>versionString</em>",
367 "<a href="#description">description</a>": "<em>A plain text description</em>",
368 "<a href="#icons">icons</a>": { ... },
369 "<a href="#default_locale">default_locale</a>": "<em>en</em>",
372 "<a href="browserAction.html">browser_action</a>": {...},
373 "<a href="pageAction.html">page_action</a>": {...},
374 "<a href="themes.html">theme</a>": {...},
375 "<a href="#app">app</a>": {...},
378 "<a href="background_pages.html">background_page</a>": "<em>aFile</em>.html",
379 "<a href="override.html">chrome_url_overrides</a>": {...},
380 "<a href="content_scripts.html">content_scripts</a>": [...],
381 "<a href="#homepage_url">homepage_url</a>": "http://<em>path/to/homepage</em>",
382 "<a href="#incognito">incognito</a>": "spanning" <em>or</em> "split",
383 "<a href="#key">key</a>": "<em>publicKey</em>",
384 "<a href="#minimum_chrome_version">minimum_chrome_version</a>": "<em>versionString</em>",
385 "<a href="omnibox.html">omnibox</a>": { "keyword" : "<em>aString</em>" },
386 "<a href="options.html">options_page</a>": "<em>aFile</em>.html",
387 "<a href="#permissions">permissions</a>": [...],
388 "<a href="npapi.html">plugins</a>": [...],
389 "<a href="autoupdate.html">update_url</a>": "http://<em>path/to/updateInfo</em>.xml"
400 see the <a href="#overview">Field summary</a>.
417 <a href="http://code.google.com/chrome/apps/docs/developers_guide.html">hosted apps</a> and
418 <a href="apps.html">packaged apps</a>.
431 <a href="i18n.html">Internationalization</a>.
443 and the <a href="https://chrome.google.com/webstore">Chrome Web Store</a>.
445 see <a href="i18n.html">Internationalization</a> for details.
453 <a href="hosting.html">host the extension on your own site</a>. If you distribute your
454 extension using the <a href="https://chrome.google.com/extensions">Extensions Gallery</a> or <a href="https://chrome.google.com/webstore">Chrome Web Store</a>,
470 <a href="experimental.infobars.html">infobar</a>
503 <a href="https://chrome.google.com/webstore/developer/dashboard">Chrome Developer Dashboard</a>,
508 <a href="http://code.google.com/chrome/webstore/">Chrome Web Store
555 by using <a href="overview.html#relative-urls">relative paths</a>
556 and <a href="extension.html#method-getURL">chrome.extension.getURL()</a>.
563 <a href="https://chrome.google.com/webstore/developer/dashboard">upload your extension</a>
564 or <a href="packaging.html">package it manually</a>).
566 <a href="http://www.chromium.org/user-experience/user-data-directory">user
577 <a href="#version">version</a> field.
587 and the <a href="https://chrome.google.com/webstore">store</a>.
589 see <a href="i18n.html">Internationalization</a> for details.
604 <a href="permission_warnings.html">Permission Warnings</a>.
611 the <a href="tabs.html">Tabs</a> page
652 <a href="xhr.html">cross-origin XMLHttpRequests</a>,
653 <a href="content_scripts.html#pi">programmatically injected
654 content scripts</a>, and <a href="cookies.html">the cookies API</a>
656 <a href="match_patterns.html">Match Patterns</a>.
684 <a href="background_pages.html">background page</a>
686 <a href="http://code.google.com/chrome/apps/docs/background.html">background window</a>.
693 <a href="bookmarks.html">chrome.bookmarks</a> module. </td>
709 <a href="contextMenus.html">chrome.contextMenus</a> module. </td>
714 <a href="cookies.html">chrome.cookies</a> module. </td>
719 <a href="http://code.google.com/chrome/extensions/dev/experimental.html">chrome.experimental.* APIs</a>.</td>
724 <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a>
730 <a href="history.html">chrome.history</a> module. </td>
735 <a href="idle.html">chrome.idle</a> module. </td>
740 <a href="management.html">chrome.management</a> module. </td>
745 <a href="http://www.chromium.org/developers/design-documents/desktop-notifications/api-specification">notification API</a>
749 <a href="notifications.html">Desktop Notifications</a>.</td>
754 <a href="tabs.html">chrome.tabs</a> or
755 <a href="windows.html">chrome.windows</a> module. </td>
767 (see issue <a href="http://crbug.com/58985">58985</a>).
822 <a href="autoupdate.html">Autoupdating</a>.
918 <a href="manifest.html#minimum_chrome_version">minimum_chrome_version</a>
987 Except as otherwise <a href="http://code.google.com/policies.html#restrictions">noted</a>,
988 the content of this page is licensed under the <a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons
990 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD License</a>.