Opal

Opal

Capture content for Opal, from anywhere on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Opal",
  "description": "Capture content for Opal, from anywhere on the web.",
  "version": "1.1.2",
  "manifest_version": 3,
  "icons": {
    "16": "/images/logo/opal-16x16.png",
    "32": "/images/logo/opal-32x32.png",
    "48": "/images/logo/opal-48x48.png",
    "128": "/images/logo/opal-128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/selectedArea.js",
        "js/content-clear-capture.js",
        "js/content-page.js",
        "js/config.js",
        "js/Cropper.js",
        "js/content-crop.js",
        "js/recorder.js"
      ],
      "css": [
        "css/content.css",
        "css/cropper.min.css"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self' ;style-src 'self' 'unsafe-inline';connect-src 'self' https://*.opaltesting.com https://*.ouropal.com https://*.fauxpal.com https://*.opalplatform.com https://*.opal.app blob:;img-src 'self' https://api.urlbox.io data:"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo/opal-16x16.png",
      "32": "/images/logo/opal-32x32.png",
      "48": "/images/logo/opal-48x48.png",
      "128": "/images/logo/opal-128x128.png"
    }
  },
  "permissions": [
    "identity",
    "storage",
    "activeTab",
    "unlimitedStorage",
    "notifications",
    "tabCapture"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}