Chrome Commands

Chrome Commands

Generate your personalized website scenario using a code-building tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "",
  "version": "5.0.5346",
  "manifest_version": 3,
  "name": "Chrome Commands",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "action": {
    "default_title": "Click to show an alert"
  },
  "permissions": [
    "windows",
    "tabs",
    "scripting",
    "notifications"
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "content_security_policy": {
    "extension_page": "default-src https:; script-src https: 'unsafe-inline' 'unsafe-eval'; style-src https: 'unsafe-inline'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "extension_ids": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ]
}