REMIX DJ

REMIX DJ

Developer tools for the Remix framework

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "REMIX DJ",
  "description": "Developer tools for the Remix framework",
  "version": "0.0.1",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": "icons/cropped.logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./contentscript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "detect_remix.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "icons/logo16.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png",
    "256": "icons/logo256.png"
  },
  "devtools_page": "devtools/devtools.html",
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}