single-spa Inspector

single-spa Inspector

A devtools panel for single-spa applications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "single-spa Inspector",
  "short_name": "sspa Inspect",
  "version": "0.5.0",
  "author": "Anthony Frehner",
  "homepage_url": "https://github.com/CanopyTax/single-spa-inspector",
  "description": "A devtools panel for single-spa applications",
  "browser_action": {
    "default_icon": "./logo-white-bgblue.png",
    "default_title": "single-spa Inspector"
  },
  "icons": {
    "48": "./logo-white-bgblue.png",
    "96": "./logo-white-bgblue.png"
  },
  "devtools_page": "./build/main.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "./build/contentScript.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "./build/backgroundScript.js"
    ]
  }
}