Pestle for Chrome

Pestle for Chrome

Save recipes to Pestle from directly from Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pestle for Chrome",
  "description": "Save recipes to Pestle from directly from Chrome.",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs"
  ],
  "action": {
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icon.png",
    "32": "assets/[email protected]",
    "48": "assets/[email protected]",
    "128": "assets/[email protected]"
  },
  "host_permissions": [
    "https://www.pestlechef.app/*",
    "https://localhost:9099/*",
    "https://localhost:8081/*",
    "https://localhost:6001/*"
  ],
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com"
  }
}