WebCRX

WebCRX

Easily and safely install local CRX files in Chrome

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.0.2",
  "name": "WebCRX",
  "description": "Easily and safely install local CRX files in Chrome",
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "homepage_url": "https://webcrx.io",
  "browser_action": {
    "default_icon": "img/128.png"
  },
  "author": "WebCRX",
  "background": {
    "scripts": [
      "script/background.js"
    ]
  },
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*",
    "notifications"
  ],
  "externally_connectable": {
    "matches": [
      "https://webcrx.io/*"
    ]
  }
}