Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(707)

Side by Side Diff: chrome/common/extensions/docs/manifest.html

Issue 209067: Modify the template to add analytics to all extension docs.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note: 1 <!DOCTYPE html><!-- This page is a placeholder for generated extensions api doc. Note:
2 1) The <head> information in this page is significant, should be uniform 2 1) The <head> information in this page is significant, should be uniform
3 across api docs and should be edited only with knowledge of the 3 across api docs and should be edited only with knowledge of the
4 templating mechanism. 4 templating mechanism.
5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a 5 3) All <body>.innerHTML is genereated as an rendering step. If viewed in a
6 browser, it will be re-generated from the template, json schema and 6 browser, it will be re-generated from the template, json schema and
7 authored overview content. 7 authored overview content.
8 4) The <body>.innerHTML is also generated by an offline step so that this 8 4) The <body>.innerHTML is also generated by an offline step so that this
9 page may easily be indexed by search engines. 9 page may easily be indexed by search engines.
10 --><html xmlns="http://www.w3.org/1999/xhtml"><head> 10 --><html xmlns="http://www.w3.org/1999/xhtml"><head>
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 </p> 228 </p>
229 229
230 <pre>{ 230 <pre>{
231 <b>"<a href="#name">name</a>"</b>: "<em>My Extension</em>", 231 <b>"<a href="#name">name</a>"</b>: "<em>My Extension</em>",
232 <b>"<a href="autoupdate.html">version</a>"</b>: "<em>versionString</em>", 232 <b>"<a href="autoupdate.html">version</a>"</b>: "<em>versionString</em>",
233 233
234 "<a href="#description">description</a>": "<em>A plain text description</em>", 234 "<a href="#description">description</a>": "<em>A plain text description</em>",
235 "<a href="#icons">icons</a>": { ... }, 235 "<a href="#icons">icons</a>": { ... },
236 "<a href="autoupdate.html">update_url</a>": "http://<em>path/to/updateInfo</em >.xml", 236 "<a href="autoupdate.html">update_url</a>": "http://<em>path/to/updateInfo</em >.xml",
237 237
238 "<a href="background_pages.html">background_page</a>": "<em>aFile</em>.html", 238 "<a href="background_pages.html">background_page</a>": "<em>aFile</em>.html",
239 "<a href="content_scripts.html">content_scripts</a>": [...], 239 "<a href="content_scripts.html">content_scripts</a>": [...],
240 "<a href="pageActions.html">page_actions</a>": [...], 240 "<a href="pageActions.html">page_actions</a>": [...],
241 "<a href="#permissions">permissions</a>": [...], 241 "<a href="#permissions">permissions</a>": [...],
242 "<a href="npapi.html">plugins</a>": [...], 242 "<a href="npapi.html">plugins</a>": [...],
243 "<a href="themes.html">theme</a>": [...], 243 "<a href="themes.html">theme</a>": [...],
244 "<a href="toolstrip.html">toolstrips</a>": [...] 244 "<a href="toolstrip.html">toolstrips</a>": [...]
245 } 245 }
246 </pre> 246 </pre>
247 247
248 248
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 <div id="pageFooter" --=""> 490 <div id="pageFooter" --="">
491 <p> 491 <p>
492 Except as otherwise <a href="http://code.google.com/policies.html#restrictions ">noted</a>, 492 Except as otherwise <a href="http://code.google.com/policies.html#restrictions ">noted</a>,
493 the content of this page is licensed under the <a rel="license" href="http://c reativecommons.org/licenses/by/3.0/">Creative Commons 493 the content of this page is licensed under the <a rel="license" href="http://c reativecommons.org/licenses/by/3.0/">Creative Commons
494 Attribution 3.0 License</a>, and code samples are licensed under the 494 Attribution 3.0 License</a>, and code samples are licensed under the
495 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD Lic ense</a>. 495 <a rel="license" href="http://code.google.com/google_bsd_license.html">BSD Lic ense</a>.
496 </p> 496 </p>
497 <p> 497 <p>
498 ©2009 Google 498 ©2009 Google
499 </p> 499 </p>
500
501 <!-- begin analytics -->
502 <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">< /script>
503 <script src="http://www.google-analytics.com/ga.js" type="text/javascript"></scr ipt>
504
505 <script type="text/javascript">
506 // chrome doc tracking
507 try {
508 var engdocs = _gat._getTracker("YT-10763712-2");
509 engdocs._trackPageview();
510 } catch(err) {}
511
512 // code.google.com site-wide tracking
513 try {
514 _uacct="UA-18071-1";
515 _uanchor=1;
516 _uff=0;
517 urchinTracker();
518 }
519 catch(e) {/* urchinTracker not available. */}
520 </script>
521 <!-- end analytics -->
522
500 </div> <!-- /pageFooter --> 523 </div> <!-- /pageFooter -->
501 </div> <!-- /container --> 524 </div> <!-- /container -->
502 </body></html> 525 </body></html>
503 526
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/index.html ('k') | chrome/common/extensions/docs/match_patterns.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698