Examine source code of Recipe Cart- View + Save Recipes

Inspect and view changes in Recipe Cart- View + Save Recipes source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
  }
}