OLD | NEW |
1 <h1>Overview</h1> | 1 <h1>Overview</h1> |
2 | 2 |
3 | 3 |
4 <p> | 4 <p> |
5 Once you've finished this page | 5 Once you've finished this page |
6 and the | 6 and the |
7 <a href="getstarted.html">Getting Started</a> tutorial, | 7 <a href="getstarted.html">Getting Started</a> tutorial, |
8 you'll be all set to start writing extensions and packaged apps. | 8 you'll be all set to start writing extensions and packaged apps. |
9 </p> | 9 </p> |
10 | 10 |
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 When you package an extension | 204 When you package an extension |
205 (typically, by uploading it with the dashboard), | 205 (typically, by uploading it with the dashboard), |
206 the extension gets a permanent ID, | 206 the extension gets a permanent ID, |
207 which remains the same even after you update the extension. | 207 which remains the same even after you update the extension. |
208 Once the extension ID is permanent, | 208 Once the extension ID is permanent, |
209 you can change all occurrences of | 209 you can change all occurrences of |
210 <code>@@extension_id</code> to use the real ID. | 210 <code>@@extension_id</code> to use the real ID. |
211 </p> | 211 </p> |
212 | 212 |
213 | 213 |
214 <h3>The manifest file</h3> | 214 <h3 id="manifest">The manifest file</h3> |
215 | 215 |
216 <p> | 216 <p> |
217 The manifest file, called <code>manifest.json</code>, | 217 The manifest file, called <code>manifest.json</code>, |
218 gives information about the extension, | 218 gives information about the extension, |
219 such as the most important files | 219 such as the most important files |
220 and the capabilities that the extension might use. | 220 and the capabilities that the extension might use. |
221 Here's a typical manifest file for a browser action | 221 Here's a typical manifest file for a browser action |
222 that uses information from google.com: | 222 that uses information from google.com: |
223 </p> | 223 </p> |
224 | 224 |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 <ul> | 633 <ul> |
634 <li> <a href="getstarted.html">Tutorial: Getting Started</a> </li> | 634 <li> <a href="getstarted.html">Tutorial: Getting Started</a> </li> |
635 <li> <a href="tut_debugging.html">Tutorial: Debugging</a> </li> | 635 <li> <a href="tut_debugging.html">Tutorial: Debugging</a> </li> |
636 <li> <a href="devguide.html">Developer's Guide</a> </li> | 636 <li> <a href="devguide.html">Developer's Guide</a> </li> |
637 <li> <a href="http://dev.chromium.org/developers/design-documents/extensions/s
amples">Samples</a> </li> | 637 <li> <a href="http://dev.chromium.org/developers/design-documents/extensions/s
amples">Samples</a> </li> |
638 <li> <a href="http://www.youtube.com/view_play_list?p=CA101D6A85FE9D4B">Videos
</a>, | 638 <li> <a href="http://www.youtube.com/view_play_list?p=CA101D6A85FE9D4B">Videos
</a>, |
639 such as | 639 such as |
640 <a href="http://www.youtube.com/watch?v=B4M_a7xejYI&feature=PlayList&p=CA101
D6A85FE9D4B&index=6">Extension Message Passing</a> | 640 <a href="http://www.youtube.com/watch?v=B4M_a7xejYI&feature=PlayList&p=CA101
D6A85FE9D4B&index=6">Extension Message Passing</a> |
641 </li> | 641 </li> |
642 </ul> | 642 </ul> |
OLD | NEW |