Recipe Cart- View + Save Recipes

Recipe Cart- View + Save Recipes

Recipe Cart automatically shows you the recipe on any recipe website. From there, you can save a copy, print to one page, view similar recipes, or even buy ingredients from a grocery store near you.

Additional files are visible only to premium users

manifest.json


{
  "author": "Parker Place, Dave Conroy, and John O'Sullivan",
  "short_name": "Recipe Cart",
  "name": "Recipe Cart | Viewer & Grocery Assistant",
  "version": "3.2.3",
  "manifest_version": 2,
  "description": "View online recipes without distraction. Easily select ingredients for same-day delivery. Print, share, or save a copy for later.",
  "icons": {
    "48": "media/cart48.svg",
    "96": "media/cart96.svg"
  },
  "homepage_url": "https://www.getrecipecart.com",
  "background": {
    "scripts": [
      "app/background.js",
      "./jsrsasign-all-min.js"
    ]
  },
  "permissions": [
    "storage",
    "identity",
    "https://*.getrecipecart.com/*",
    "https://www.amazon.com/*",
    "https://www.instacart.com/*",
    "https://www.googleapis.com/oauth2/",
    "https://graph.facebook.com/*"
  ],
  "browser_action": {
    "default_title": "Recipe Cart",
    "default_icon": "media/cart48.svg",
    "default_popup": "popup.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{f0502890-4b87-4f28-8a6b-38c0d3994ef3}",
      "strict_min_version": "53.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "https://*/*"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/static/media/*"
  ],
  "developer": {
    "name": "Parker Place",
    "url": "https://getrecipecart.com"
  }
}