The Beagle Button - Sustainable Shopping

The Beagle Button - Sustainable Shopping

The Beagle Button - the magic way to shop sustainably

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Beagle Button - Sustainable Shopping",
  "short_name": "The Beagle Button",
  "description": "The Beagle Button - the magic way to shop sustainably",
  "version": "0.0.41",
  "manifest_version": 2,
  "icons": {
    "128": "assets/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content/content_script.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "assets/icon.png",
    "default_title": "The Beagle Button",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background/background_script.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "inline/inline.html",
    "assets/icon.svg",
    "assets/inline-result-icon.svg",
    "util/reporting.js"
  ],
  "cross_origin_embedder_policy": {
    "value": "require-corp"
  },
  "cross_origin_opener_policy": {
    "value": "same-origin"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}