Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Page Load Timer",
"version": "1.0.7",
"description": "Shows page load time in the toolbar and alerts when performance drops.",
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": "stopwatch48.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"browser-polyfill.min.js",
"performance.js",
"content.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"*:\/\/*\/*"
],
"icons": {
"48": "stopwatch48.png",
"96": "stopwatch96.png",
"128": "stopwatch128.png"
}
}