Pantree

Pantree

Join us at Pantree, a revolutionary platform dedicated to combating food waste and enlightening young adults about smart grocery…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Pantree",
  "version": "1.0.2",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "Pantree"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.instacart.ca/store/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://pantreeapp.com/*",
      "http://localhost:3000/*"
    ]
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ]
}