| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">Developer's Guide</div> | 1 <div id="pageData-name" class="pageData">Developer's Guide</div> |
| 2 | 2 |
| 3 <p> | 3 <p> |
| 4 These pages assume you've completed | 4 These pages assume you've completed |
| 5 the <a href="getstarted.html">Getting Started</a> tutorial | 5 the <a href="getstarted.html">Getting Started</a> tutorial |
| 6 and <a href="overview.html">Overview</a>. | 6 and <a href="overview.html">Overview</a>. |
| 7 </p> | 7 </p> |
| 8 | 8 |
| 9 <table class="columns"> | 9 <table class="columns"> |
| 10 <tr> | 10 <tr> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 <td> Create, modify, and rearrange windows in the browser </td> | 70 <td> Create, modify, and rearrange windows in the browser </td> |
| 71 </tr> | 71 </tr> |
| 72 | 72 |
| 73 <tr> | 73 <tr> |
| 74 <td colspan="2"><h4>Implementing the innards of your extension</h4></td> | 74 <td colspan="2"><h4>Implementing the innards of your extension</h4></td> |
| 75 </tr> | 75 </tr> |
| 76 <tr> | 76 <tr> |
| 77 <td colspan="2"> </td> | 77 <td colspan="2"> </td> |
| 78 </tr> | 78 </tr> |
| 79 <tr> | 79 <tr> |
| 80 <td> <a href="a11y.html">Accessibility (a11y)</a> </td> |
| 81 <td> Make your extension accessible to people with disabilities </td> |
| 82 </tr> |
| 83 <tr> |
| 80 <td> <a href="background_pages.html">Background Pages</a> </td> | 84 <td> <a href="background_pages.html">Background Pages</a> </td> |
| 81 <td> Put all the common code for your extension in a single place </td> | 85 <td> Put all the common code for your extension in a single place </td> |
| 82 </tr> | 86 </tr> |
| 83 <tr> | 87 <tr> |
| 84 <td> <a href="content_scripts.html">Content Scripts</a> </td> | 88 <td> <a href="content_scripts.html">Content Scripts</a> </td> |
| 85 <td> Run JavaScript code in the context of web pages </td> | 89 <td> Run JavaScript code in the context of web pages </td> |
| 86 </tr> | 90 </tr> |
| 87 <tr> | 91 <tr> |
| 88 <td> <a href="xhr.html">Cross-Origin XHR</a> </td> | 92 <td> <a href="xhr.html">Cross-Origin XHR</a> </td> |
| 89 <td> Use XMLHttpRequest to send and receive data from remote servers </td> | 93 <td> Use XMLHttpRequest to send and receive data from remote servers </td> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 119 <tr> | 123 <tr> |
| 120 <td> <a href="external_extensions.html">Other Deployment Options</a> </td> | 124 <td> <a href="external_extensions.html">Other Deployment Options</a> </td> |
| 121 <td> Distribute extensions on your network or with other software </td> | 125 <td> Distribute extensions on your network or with other software </td> |
| 122 </tr> | 126 </tr> |
| 123 <tr> | 127 <tr> |
| 124 <td> <a href="packaging.html">Packaging</a> </td> | 128 <td> <a href="packaging.html">Packaging</a> </td> |
| 125 <td> Create a <code>.crx</code> file so you can distribute your extension </
td> | 129 <td> Create a <code>.crx</code> file so you can distribute your extension </
td> |
| 126 </tr> | 130 </tr> |
| 127 </table> | 131 </table> |
| 128 | 132 |
| OLD | NEW |