Chestr - Universal Shopping Wishlist

Chestr - Universal Shopping Wishlist

Save items and track discounts from any online store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Chestr - Universal Shopping Wishlist",
  "version": "1.6.66",
  "description": "Save items and track discounts from any online store.",
  "background": {
    "service_worker": "serviceWorker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content/import-index.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "/images/logo.png",
      "32": "/images/logo.png",
      "48": "/images/logo.png",
      "128": "/images/logo.png"
    },
    "default_popup": "pages/popup/index.html"
  },
  "icons": {
    "16": "/images/logo.png",
    "32": "/images/logo.png",
    "48": "/images/logo.png",
    "128": "/images/logo.png"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "https://chestr.com/*",
      "https://chestr.app/*",
      "https://chestr-staging.com/*",
      "*://localhost/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "content/index.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ]
}