Packages

Phoenix LiveView Inspector - Real-time debugging and state inspection for LiveView applications.

Current section

Files

Jump to
phoenix_live_inspector browser_extension manifest.json
Raw

browser_extension/manifest.json

{
"manifest_version": 3,
"name": "Phoenix LiveView Inspector",
"version": "0.1.2",
"description": "Real-time debugging and state inspection for Phoenix LiveView applications",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"activeTab",
"scripting"
],
"host_permissions": [
"http://localhost/*",
"https://localhost/*"
],
"devtools_page": "devtools.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["http://localhost/*", "https://localhost/*"],
"js": ["content.js"],
"run_at": "document_end",
"all_frames": true
}
]
}