Foodie

Foodie

Recipe finder based on your trolley

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Foodie",
  "description": "Recipe finder based on your trolley",
  "version": "1.1.1",
  "content_scripts": [
    {
      "matches": [
        "http://groceries.asda.com/*"
      ],
      "js": [
        "lib/lodash.min.js",
        "lib/jquery-2.1.3.min.js",
        "lib/arrive.min.js",
        "controllers/main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "events/bg.js"
    ]
  },
  "browser_action": {
    "default_icon": "svg/bowl-gimp.png",
    "default_popup": "html/popup.html",
    "default_title": "Click here!"
  },
  "permissions": [
    "storage",
    "declarativeContent",
    "http://foodie/",
    "http://arcanine.net/"
  ]
}