Appetized Recipe Manager

Appetized Recipe Manager

Adds recipes, and only recipes, to an Appetized users account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Appetized Recipe Manager",
  "short_name": "Appetized",
  "version": "1.1.0",
  "description": "Adds recipes, and only recipes, to an Appetized users account.",
  "browser_action": {
    "default_title": "Appetized",
    "default_popup": "popup.html",
    "default_icon": "disabled128.png"
  },
  "icons": {
    "128": "enabled128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self'",
  "permissions": [
    "activeTab",
    "tabs",
    "https://appetized.herokuapp.com/"
  ]
}