Plan To Eat Recipe Clipper

Plan To Eat Recipe Clipper

A recipe import companion tool for Plan to Eat web and mobile apps

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Plan To Eat Recipe Clipper",
  "version": "1.0.0",
  "description": "A recipe import companion tool for Plan to Eat web and mobile apps",
  "icons": {
    "48": "icons/PTE-Logo-DkBlue-Updated.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "sidePanel",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content-scripts/index.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Plan to Eat"
  },
  "side_panel": {
    "default_path": "index.html",
    "default_title": "Plan To Eat"
  }
}