| OLD | NEW |
| 1 <div id="pageData-name" class="pageData">Tutorial: Google Analytics</div> | 1 <div id="pageData-name" class="pageData">Tutorial: Google Analytics</div> |
| 2 <div id="pageData-showTOC" class="pageData">true</div> | 2 <div id="pageData-showTOC" class="pageData">true</div> |
| 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 |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 | 180 |
| 181 <p> | 181 <p> |
| 182 By using this approach, you can see which parts of your extension are | 182 By using this approach, you can see which parts of your extension are |
| 183 under-or-overutilized. This information can help guide decisions about UI | 183 under-or-overutilized. This information can help guide decisions about UI |
| 184 redesigns or additional functionality to implement. | 184 redesigns or additional functionality to implement. |
| 185 </p> | 185 </p> |
| 186 | 186 |
| 187 <p> | 187 <p> |
| 188 For more information about using the event tracking API, see the | 188 For more information about using the event tracking API, see the |
| 189 Google Analytics | 189 Google Analytics |
| 190 <a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerOverv
iew.html]">developer | 190 <a href="http://code.google.com/apis/analytics/docs/tracking/eventTrackerOverv
iew.html">developer |
| 191 documentation</a>. | 191 documentation</a>. |
| 192 </p> | 192 </p> |
| 193 | 193 |
| 194 <h2 id="toc-samplecode">Sample code</h2> | 194 <h2 id="toc-samplecode">Sample code</h2> |
| 195 | 195 |
| 196 <p> | 196 <p> |
| 197 A sample extension that uses these techniques is | 197 A sample extension that uses these techniques is |
| 198 available in the Chromium source tree: | 198 available in the Chromium source tree: |
| 199 </p> | 199 </p> |
| 200 | 200 |
| 201 <blockquote> | 201 <blockquote> |
| 202 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensi
ons/docs/examples/tutorials/analytics/">.../examples/tutorials/analytics/</a> | 202 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensi
ons/docs/examples/tutorials/analytics/">.../examples/tutorials/analytics/</a> |
| 203 </blockquote> | 203 </blockquote> |
| 204 </p> | 204 </p> |
| OLD | NEW |