The Beagle Button - sustainable shopping helper

The Beagle Button - sustainable shopping helper

The Beagle Button helps you buy more sustainably online by finding ethical and sustainable alternatives to the products you see when you shop online.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "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"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "{7a8de942-a937-46dc-bf4a-d268931cfe75}"
    }
  }
}