Home | History | Annotate | only in /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark
Up to higher level directory
NameDateSize
background.html06-Dec-201315.7K
jquery/06-Dec-2013
jst/06-Dec-2013
manifest.json06-Dec-2013354
options.html06-Dec-201330.9K
README.txt06-Dec-20131.2K
script.js06-Dec-20132.1K
stopwatch.jpg06-Dec-2013947
util/06-Dec-2013

README.txt

      1 Benchmark Extension
      2 -------------------
      3 This extension provides basic page-level benchmarking into the browser.
      4 
      5 With the extension installed you can test web pages and then compare
      6 results in a subwindow.
      7 
      8 Between each page load you can optionally clear idle http connections and
      9 clear the cache so that page loads are more like the user experience
     10 when first connecting to a site.
     11 
     12 To use this benchmark, you'll need to run chrome with the the
     13 "--enable-benchmarking" flag.  This flag enables a v8-extension so that
     14 the benchmark can clear idle connections and the cache.
     15 
     16 The code found in the jst/ subdirectory is JSTemplate code from
     17 http://code.google.com/p/google-jstemplate/.
     18 
     19 In jquery/, jquery-1.4.2.min.js is from http://jquery.com/. jquery.flot.min.js
     20 is a plotting library and from http://code.google.com/p/flot/.
     21 jquery.flot.dashes.js is an enhancement of Flot for dashed lines and from 
     22 http://code.google.com/p/flot/issues/detail?id=61.
     23 
     24 In util/, sortable.js serves for sorting table content and is from
     25 http://www.kryogenix.org/code/browser/sorttable/. table2CSV.js is for exporting
     26 table data to .csv and from http://www.kunalbabre.com/projects/table2CSV.php.
     27 
     28