OrganizEat Recipe Clipper

OrganizEat Recipe Clipper

Copy any recipe from any website with just one click into your OrganizEat Recipe Keeper account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "OrganizEat Recipe Clipper",
  "description": "Copy any recipe from any website with just one click into your OrganizEat Recipe Keeper account",
  "version": "22.8.26.1400",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo_chromoe.16.png",
      "32": "/images/logo_chromoe.32.png",
      "48": "/images/logo_chromoe.48.png",
      "128": "/images/logo_chromoe.128.png"
    }
  },
  "icons": {
    "16": "/images/logo_chromoe.16.png",
    "32": "/images/logo_chromoe.32.png",
    "48": "/images/logo_chromoe.48.png",
    "128": "/images/logo_chromoe.128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.organizeat.com/*"
      ],
      "js": [
        "content-script-webapp.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}