Ember Inspector

Ember Inspector

Tool for debugging Ember applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ember Inspector",
  "description": "Tool for debugging Ember applications.",
  "version": "4.11.0",
  "icons": {
    "16": "panes-3-16-0/assets/images/icon16.png",
    "38": "panes-3-16-0/assets/images/icon38.png",
    "48": "panes-3-16-0/assets/images/icon48.png",
    "128": "panes-3-16-0/assets/images/icon128.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "boot.js"
      ],
      "world": "MAIN",
      "run_at": "document_start",
      "match_about_blank": true,
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end",
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "devtools_page": "devtools.html",
  "action": {
    "default_icon": {
      "19": "panes-3-16-0/assets/images/icon19_grey.png",
      "38": "panes-3-16-0/assets/images/icon38_grey.png"
    },
    "default_title": "This webpage is not running Ember.js"
  },
  "background": {
    "service_worker": "background.js"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "options_ui": {
    "page": "options-dialog.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/in-page-script.js",
        "panes-*/ember_debug.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}