HelloFresh Chrome Helper

HelloFresh Chrome Helper

hellofresh-chrome-helper is a free addon created to enhance one's experience when selecting recipes on the HelloFresh website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "HelloFresh Chrome Helper",
  "version": "1.0",
  "description": "hellofresh-chrome-helper is a free addon created to enhance one's experience when selecting recipes on the HelloFresh website.",
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "matches": [
        "https://www.hellofresh.nl/my-account/deliveries/*",
        "https://www.hellofresh.de/my-account/deliveries/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "webRequest"
  ],
  "host_permissions": [
    "*://*.hellofresh.nl/",
    "*://*.hellofresh.de/"
  ]
}