Cook'n Recipe Capture Plugin

Cook'n Recipe Capture Plugin

This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cook'n Recipe Capture Plugin",
  "description": "This extension captures the recipe in a web page and stores in the user's Cook'n Cloud Account.",
  "version": "11.1",
  "action": {
    "default_icon": "/img/cook'n.png",
    "default_popup": "/html/popup.html"
  },
  "icons": {
    "16": "/img/cookn_16.png",
    "48": "/img/cookn_48.png",
    "128": "/img/cookn_128.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://app.cookn-cloud.com/",
    "http://localhost:5918/"
  ],
  "short_name": "Cook'n Recipe Capture Plugin",
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.dvo.com/*"
      ],
      "js": [
        "/js/dvo_msg_listeners.js",
        "/js/helper/storage.js",
        "/js/helper/session.js"
      ]
    }
  ],
  "options_page": "/html/options.html",
  "options_ui": {
    "page": "/html/options.html"
  },
  "externally_connectable": {
    "matches": [
      "*://*.dvo.com/*"
    ]
  }
}