| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| jquery/ | 03-May-2024 | - | 399 | 296 | ||
| jst/ | 03-May-2024 | - | 2,259 | 979 | ||
| util/ | 03-May-2024 | - | 581 | 411 | ||
| README.txt | D | 03-May-2024 | 1.2 KiB | 28 | 20 | |
| background.html | D | 03-May-2024 | 15.7 KiB | 505 | 450 | |
| manifest.json | D | 03-May-2024 | 354 | 15 | 14 | |
| options.html | D | 03-May-2024 | 30.9 KiB | 1,011 | 907 | |
| script.js | D | 03-May-2024 | 2.1 KiB | 76 | 48 | |
| stopwatch.jpg | D | 03-May-2024 | 947 |
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