Programa Web Clipper

Programa Web Clipper

The Programa Web Clipper allows you to quickly and easily add photos and product details from any website directly to your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.2.0",
  "name": "Programa Web Clipper",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "Programa Web Clipper",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.bundle.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "128": "icon-128.png"
  },
  "manifest_version": 3,
  "permissions": [
    "storage",
    "contextMenus",
    "activeTab",
    "cookies"
  ],
  "host_permissions": [
    "https://app.programa.com.au/*",
    "https://*.programa-alpha.com/*",
    "http://localhost:3000/*",
    "https://app.programa.design/*",
    "https://app.qa.programa.design/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "clipper.html",
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}