OLD | NEW |
(Empty) | |
| 1 <h1 class="page_title">Developer's Guide</h1> |
| 2 <p> |
| 3 These pages assume you've completed |
| 4 the <a href="getstarted.html">Getting Started</a> tutorial |
| 5 and <a href="overview.html">Overview</a>. |
| 6 Unless otherwise stated, everything in this page |
| 7 applies to packaged apps, as well as extensions. |
| 8 </p> |
| 9 <table class="columns"> |
| 10 <tr> |
| 11 <td colspan="2"><h4>Changing the Google Chrome chrome</h4></td> |
| 12 </tr> |
| 13 <tr> |
| 14 <td colspan="2"> </td> |
| 15 </tr> |
| 16 <tr> |
| 17 <td> <a href="browserAction.html">Browser Actions</a> </td> |
| 18 <td> Add icons to the toolbar <em>(extensions only)</em> </td> |
| 19 </tr> |
| 20 <tr> |
| 21 <td> <a href="notifications.html">Desktop Notifications</a> </td> |
| 22 <td> Notify users of important events </td> |
| 23 </tr> |
| 24 <tr> |
| 25 <td> <a href="omnibox.html">Omnibox</a> </td> |
| 26 <td> Add a keyword to the address bar </td> |
| 27 </tr> |
| 28 <tr> |
| 29 <td> <a href="options.html">Options Pages</a> </td> |
| 30 <td> Let users customize your extension </td> |
| 31 </tr> |
| 32 <tr> |
| 33 <td> <a href="override.html">Override Pages</a> </td> |
| 34 <td> Implement your own version of standard browser pages |
| 35 such as the New Tab page</td> |
| 36 </tr> |
| 37 <tr> |
| 38 <td> <a href="pageAction.html">Page Actions</a> </td> |
| 39 <td> Add temporary icons inside the address bar <em>(extensions only)</em> <
/td> |
| 40 </tr> |
| 41 <tr> |
| 42 <td> <a href="themes.html">Themes</a> </td> |
| 43 <td> Change the overall appearance of the browser </td> |
| 44 </tr> |
| 45 <tr> |
| 46 <td colspan="2"><h4>Interacting with Google Chrome in other ways</h4></td> |
| 47 </tr> |
| 48 <tr> |
| 49 <td colspan="2"> </td> |
| 50 </tr> |
| 51 <tr> |
| 52 <td> <a href="bookmarks.html">Bookmarks</a> </td> |
| 53 <td> Create, organize, and otherwise manipulate the user's bookmarks </td> |
| 54 </tr> |
| 55 <tr> |
| 56 <td> <a href="cookies.html">Cookies</a> </td> |
| 57 <td> Explore and modify the browser's cookie system </td> |
| 58 </tr> |
| 59 <tr> |
| 60 <td> <a href="devtools.html">Developer Tools</a> </td> |
| 61 <td> Add features to Chrome Developer Tools </td> |
| 62 </tr> |
| 63 <tr> |
| 64 <td> <a href="events.html">Events</a> </td> |
| 65 <td> Detect when something interesting happens </td> |
| 66 </tr> |
| 67 <tr> |
| 68 <td> <a href="history.html">History</a> </td> |
| 69 <td> Interact with the browser's record of visited pages </td> |
| 70 </tr> |
| 71 <tr> |
| 72 <td> <a href="tabs.html">Tabs</a> </td> |
| 73 <td> Create, modify, and rearrange tabs in the browser </td> |
| 74 </tr> |
| 75 <tr> |
| 76 <td> <a href="windows.html">Windows</a> </td> |
| 77 <td> Create, modify, and rearrange windows in the browser </td> |
| 78 </tr> |
| 79 <tr> |
| 80 <td colspan="2"><h4>Implementing the innards of your extension</h4></td> |
| 81 </tr> |
| 82 <tr> |
| 83 <td colspan="2"> </td> |
| 84 </tr> |
| 85 <tr> |
| 86 <td> <a href="a11y.html">Accessibility (a11y)</a> </td> |
| 87 <td> Make your extension accessible to people with disabilities </td> |
| 88 </tr> |
| 89 <tr> |
| 90 <td> <a href="background_pages.html">Background Pages</a> </td> |
| 91 <td> Put all the common code for your extension in a single place </td> |
| 92 </tr> |
| 93 <tr> |
| 94 <td> <a href="content_scripts.html">Content Scripts</a> </td> |
| 95 <td> Run JavaScript code in the context of web pages </td> |
| 96 </tr> |
| 97 <tr> |
| 98 <td> <a href="xhr.html">Cross-Origin XHR</a> </td> |
| 99 <td> Use XMLHttpRequest to send and receive data from remote servers </td> |
| 100 </tr> |
| 101 <tr> |
| 102 <td> <a href="i18n.html">Internationalization</a> </td> |
| 103 <td> Deal with language and locale </td> |
| 104 </tr> |
| 105 <tr> |
| 106 <td> <a href="messaging.html">Message Passing</a> </td> |
| 107 <td> Communicate from a content script to its parent extension, |
| 108 or vice versa</td> |
| 109 </tr> |
| 110 <tr> |
| 111 <td> <a href="permissions.html">Optional Permissions</a> </td> |
| 112 <td> Modify your extension's permissions </td> |
| 113 </tr> |
| 114 <tr> |
| 115 <td> <a href="npapi.html">NPAPI Plugins</a> </td> |
| 116 <td> Load native binary code </td> |
| 117 </tr> |
| 118 <tr> |
| 119 <td colspan="2"><h4>Finishing and distributing your extension</h4></td> |
| 120 </tr> |
| 121 <tr> |
| 122 <td colspan="2"> </td> |
| 123 </tr> |
| 124 <tr> |
| 125 <td> <a href="autoupdate.html">Autoupdating</a> </td> |
| 126 <td> Update extensions automatically </td> |
| 127 </tr> |
| 128 <tr> |
| 129 <td> <a href="hosting.html">Hosting</a> </td> |
| 130 <td> Host extensions on Google servers or your own </td> |
| 131 </tr> |
| 132 <tr> |
| 133 <td> <a href="external_extensions.html">Other Deployment Options</a> </td> |
| 134 <td> Distribute extensions on your network or with other software </td> |
| 135 </tr> |
| 136 <tr> |
| 137 <td> <a href="packaging.html">Packaging</a> </td> |
| 138 <td> Create a <code>.crx</code> file so you can distribute your extension </
td> |
| 139 </tr> |
| 140 </table> |
OLD | NEW |