Mobile DevTools

Mobile DevTools

A mobile browser extension for debugging web sites and applications with the console, DOM, network info, sources, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mobile DevTools",
  "version": "0.1.0",
  "manifest_version": 2,
  "description": "A mobile browser extension for debugging web sites and applications with the console, DOM, network info, sources, and more.",
  "homepage_url": "https://github.com/volleio/mobile-devtools#readme",
  "icons": {
    "16": "icons/mobile-devtools16.png",
    "48": "icons/mobile-devtools48.png",
    "128": "icons/mobile-devtools128.png"
  },
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_title": "Mobile DevTools"
  },
  "web_accessible_resources": [
    "eruda.min.js",
    "toggle-devtools.js"
  ],
  "permissions": [
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' https://www.googletagmanager.com https://www.google-analytics.com; object-src 'self'"
}