A mobile devtools for debugging web sites and applications with the console, DOM, network info, sources, and more.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "MobiDevTools",
"version": "0.4.8",
"manifest_version": 2,
"description": "A mobile devtools for debugging web sites and applications with the console, DOM, network info, sources, and more.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"page": "background.html"
},
"browser_action": {
"default_title": "Mobile DevTools"
},
"web_accessible_resources": [
"node_modules/eruda/eruda.js",
"toggle-devtools.js"
],
"applications": {
"gecko": {
"id": "@mobidevtools",
"strict_min_version": "58.0"
}
},
"permissions": [
"activeTab"
],
"content_security_policy": "script-src 'self'; object-src 'self'; font-src 'self' data:; default-src 'self' data: blob:; style-src 'self' data:; img-src 'self' data:;"
}