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": 2,
  "version": "1.5.1",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "64": "images/icons/64.png",
    "128": "images/icons/128.png"
  },
  "default_locale": "en",
  "homepage_url": "https://crosspilot.io",
  "browser_action": {
    "default_icon": "images/icons/popup.png",
    "default_popup": "html/popup.html"
  },
  "author": "CrossPilot",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://addons.opera.com/*/extensions/details/*"
      ],
      "js": [
        "js/opera-store.js"
      ],
      "css": [
        "css/opera-store.css"
      ],
      "run_at": "document_end"
    }
  ],
  "sandbox": {
    "pages": [
      "html/sandbox.html"
    ]
  },
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*",
    "downloads",
    "downloads.open",
    "tabs"
  ],
  "externally_connectable": {
    "matches": [
      "https://crosspilot.io/*"
    ]
  }
}