Created
February 13, 2017 20:22
-
-
Save mgroat/0b9f357475e9187a10399169c48015a3 to your computer and use it in GitHub Desktop.
Bookmarklet to show you page load time
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:var t = performance.timing;alert("From request start to response end: " + (t.responseEnd - t.requestStart)/1000+"s\nFrom Navigation Start to Load End: "+ (t.loadEventEnd - t.navigationStart)/1000 +"s"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment