Ingredient Alchemy

Ingredient Alchemy

Cook with ease! This extension displays alternate ingredients for every recipe on AllRecipes.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ingredient Alchemy",
  "description": "Cook with ease! This extension displays alternate ingredients for every recipe on AllRecipes.com.",
  "permissions": [
    "https://allrecipes.com/*"
  ],
  "version": "0.0.0.2",
  "icons": {
    "16": "images/tomato_128.png",
    "32": "images/tomato_128.png",
    "48": "images/tomato_128.png",
    "128": "images/tomato_128.png"
  },
  "content_scripts": [
    {
      "css": [
        "scripts/app.css"
      ],
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://*/*recipe*"
      ]
    }
  ]
}