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


{
  "manifest_version": 2,
  "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-blue-square-1920x1920.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "https://app.plantoeat.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-scripts/index.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Plan To Eat"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "sidebar_action": {
    "default_icon": "icons/pte-blue-square-1920x1920.png",
    "default_panel": "index.html",
    "default_title": "Plan To Eat",
    "open_at_install": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b9546c00-58b4-4067-9fab-b8cbaecef8ea}"
    }
  }
}