Gourmet Recipe Manager

Gourmet Recipe Manager

Recipe importer and manager for chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gourmet Recipe Manager",
  "short_name": "Gourmet",
  "description": "Recipe importer and manager for chrome.",
  "version": "0.1",
  "manifest_version": 2,
  "icons": {
    "128": "GourmetChromeIcon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/cookie.png",
    "default_title": "Gourmet click"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.gourmetrecipemanager.com/*",
      "https://gourmetrecipemanager.com/*",
      "https://localhost:*/*",
      "http://localhost:*/*"
    ]
  },
  "web_accessible_resources": [
    "embed.js",
    "images/cookie.png",
    "background.js.map",
    "content.js.map",
    "embed.js.map"
  ]
}