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",
"name": "Cloudinary Media Inspector",
"version": "1.0.0",
"author": "Erwin Lukas",
"description": "Quickly inspect page media elements to gain detailed, actionable information for performance tuning.",
"permissions": [
"tabs",
"webRequest",
"contextMenus",
"storage",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"js": [
"js\/library.js",
"js\/inject.js"
],
"css": [
"css\/inject.css"
],
"all_frames": true
}
],
"icons": {
"256": "icons\/icon_v3-256-light.png",
"512": "icons\/icon_v3-512-light.png"
},
"action": {
"default_title": "Inspect current tab"
},
"options_ui": {
"page": "html\/options.html",
"open_in_tab": false
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+C",
"mac": "MacCtrl+Shift+C"
}
},
"close-all-media-inspector-windows": {
"suggested_key": {
"default": "Ctrl+Shift+X",
"mac": "MacCtrl+Shift+X"
},
"description": "Close All Media Inspector Windows"
}
},
"manifest_version": 3
}