• Home
  • History
  • Annotate
  • only in /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
NameDateSize

..13-Jul-20124 KiB

background.html13-Jul-201215.7 KiB

jquery/13-Jul-20124 KiB

jst/13-Jul-20124 KiB

manifest.json13-Jul-2012354

options.html13-Jul-201230.9 KiB

README.txt13-Jul-20121.2 KiB

script.js13-Jul-20122.1 KiB

stopwatch.jpg13-Jul-2012947

util/13-Jul-20124 KiB

README.txt

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