CrossPilot

CrossPilot

Install Opera extensions in Chrome in a sandboxed environment

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.1.1",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "minimum_chrome_version": "120",
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "sandbox": {
    "pages": [
      "html/sandbox.html"
    ]
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": "images/icons/popup.png"
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://addons.opera.com/*/extensions/details/*"
      ],
      "js": [
        "js/content/opera-store.js"
      ],
      "css": [
        "css/content/opera-store.css"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "alarms",
    "storage",
    "unlimitedStorage",
    "offscreen",
    "scripting"
  ],
  "optional_host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "optional_permissions": [
    "tabs",
    "downloads"
  ],
  "externally_connectable": {
    "matches": [
      "https://crosspilot.io/*"
    ]
  }
}