| OLD | NEW |
| 1 .. _devcycle-running: | 1 .. _devcycle-running: |
| 2 | 2 |
| 3 :template: standard_nacl_api | 3 :template: standard_nacl_api |
| 4 | 4 |
| 5 ####### | 5 ####### |
| 6 Running | 6 Running |
| 7 ####### | 7 ####### |
| 8 | 8 |
| 9 | 9 |
| 10 .. contents:: | 10 .. contents:: |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 * `Chrome Web Store Formats: Manifest Files </extensions/manifest>`_ | 285 * `Chrome Web Store Formats: Manifest Files </extensions/manifest>`_ |
| 286 | 286 |
| 287 Technique 1: Local server | 287 Technique 1: Local server |
| 288 ========================= | 288 ========================= |
| 289 | 289 |
| 290 To run your application from a local server: | 290 To run your application from a local server: |
| 291 | 291 |
| 292 * Enable the :ref:`Native Client flag <flag>` in Chrome. | 292 * Enable the :ref:`Native Client flag <flag>` in Chrome. |
| 293 * Start a :ref:`local web server <web_server>`. | 293 * Start a :ref:`local web server <web_server>`. |
| 294 * Put your application under the examples directory in the SDK bundle you are | 294 * Put your application under the examples directory in the SDK bundle you are |
| 295 using (e.g., in the directory ``pepper_31/examples/my_app``). | 295 using (for example, in the directory ``pepper_35/examples/my_app``). |
| 296 * Access your application on the local server by typing the location of its | 296 * Access your application on the local server by typing the location of its |
| 297 HTML file in Chrome, e.g.: | 297 HTML file in Chrome, for example: |
| 298 ``http://localhost:5103/my_app/my_app_main_page.html``. | 298 ``http://localhost:5103/my_app/my_app_main_page.html``. |
| 299 | 299 |
| 300 .. Note:: | 300 .. Note:: |
| 301 :class: note | 301 :class: note |
| 302 | 302 |
| 303 **Note:** You don't have to use a local web server---you can use another | 303 **Note:** You don't have to use a local web server---you can use another |
| 304 server if you already have one running. You must still enable the Native | 304 server if you already have one running. You must still enable the Native |
| 305 Client flag in order to run your application from the server. | 305 Client flag in order to run your application from the server. |
| 306 | 306 |
| 307 Technique 2: Packaged application loaded as an unpacked extension | 307 Technique 2: Packaged application loaded as an unpacked extension |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 be able to find the application by searching in the CWS. | 465 be able to find the application by searching in the CWS. |
| 466 | 466 |
| 467 To publish an application to the world after publishing it to test accounts, | 467 To publish an application to the world after publishing it to test accounts, |
| 468 you must first unpublish the application. For additional information see | 468 you must first unpublish the application. For additional information see |
| 469 `Publishing Your App </webstore/docs/publish>`_, and in particular `Publishing | 469 `Publishing Your App </webstore/docs/publish>`_, and in particular `Publishing |
| 470 to test accounts </webstore/publish#testaccounts>`_. | 470 to test accounts </webstore/publish#testaccounts>`_. |
| 471 | 471 |
| 472 .. |menu-icon| image:: /images/menu-icon.png | 472 .. |menu-icon| image:: /images/menu-icon.png |
| 473 .. |extensions| image:: /images/extensions-management.png | 473 .. |extensions| image:: /images/extensions-management.png |
| 474 .. |new-tab-apps| image:: /images/new-tab-apps.png | 474 .. |new-tab-apps| image:: /images/new-tab-apps.png |
| OLD | NEW |