CookWise | Online recipes, simplified.

CookWise is a recipe app that allows you to scan and standardize recipes from popular sites.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "CookWise",
  "short_name": "CookWise",
  "description": "CookWise is a recipe app that allows you to scan and standardize recipes from popular sites.",
  "version": "0.3.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "CookWise"
  },
  "permissions": [
    "storage",
    "activeTab",
    "identity"
  ],
  "icons": {
    "16": "assets/logo16.png",
    "32": "assets/logo32.png",
    "48": "assets/logo48.png",
    "128": "assets/logo128.png",
    "192": "assets/logo192.png",
    "512": "assets/logo512.png"
  },
  "background": {
    "scripts": [
      "service-worker.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "yussuf@cookwise.co"
    }
  }
}