| OLD | NEW |
| 1 <h1>Tutorial: Google Analytics</h1> | 1 <h1>Tutorial: Google Analytics</h1> |
| 2 | 2 |
| 3 | 3 |
| 4 <p>This tutorial demonstrates using Google Analytics to track the usage of your | 4 <p>This tutorial demonstrates using Google Analytics to track the usage of your |
| 5 extension.</p> | 5 extension.</p> |
| 6 | 6 |
| 7 <h2 id="toc-requirements">Requirements</h2> | 7 <h2 id="toc-requirements">Requirements</h2> |
| 8 <p> | 8 <p> |
| 9 This tutorial expects that you have some familiarity writing extensions for | 9 This tutorial expects that you have some familiarity writing extensions for |
| 10 Google Chrome. If you need information on how to write an extension, please | 10 Google Chrome. If you need information on how to write an extension, please |
| 11 read the <a href="gettingstarted.html">Getting Started tutorial</a>. | 11 read the <a href="getstarted.html">Getting Started tutorial</a>. |
| 12 </p> | 12 </p> |
| 13 | 13 |
| 14 <p> | 14 <p> |
| 15 You will also need a <a href="http://www.google.com/analytics">Google | 15 You will also need a <a href="http://www.google.com/analytics">Google |
| 16 Analytics account</a> set up to track your extension. Note that when setting | 16 Analytics account</a> set up to track your extension. Note that when setting |
| 17 up the account, you can use any value in the Website's URL field, as your | 17 up the account, you can use any value in the Website's URL field, as your |
| 18 extension will not have an URL of its own. | 18 extension will not have an URL of its own. |
| 19 </p> | 19 </p> |
| 20 | 20 |
| 21 <p style="text-align: center"> | 21 <p style="text-align: center"> |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 | 204 |
| 205 <h2 id="toc-samplecode">Sample code</h2> | 205 <h2 id="toc-samplecode">Sample code</h2> |
| 206 | 206 |
| 207 <p> | 207 <p> |
| 208 A sample extension that uses these techniques is | 208 A sample extension that uses these techniques is |
| 209 available in the Chromium source tree: | 209 available in the Chromium source tree: |
| 210 </p> | 210 </p> |
| 211 | 211 |
| 212 <blockquote> | 212 <blockquote> |
| 213 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensi
ons/docs/examples/tutorials/analytics/">.../examples/tutorials/analytics/</a> | 213 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensi
ons/docs/examples/tutorials/analytics/">.../examples/tutorials/analytics/</a> |
| 214 </blockquote> | 214 </blockquote> |
| OLD | NEW |