Picky - Price comparison in your Browser

Picky - Price comparison in your Browser

Your automatic price comparison. Shop at your favorite stores, we compare hundreds of shops and find the best offer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "4.0.7",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://ciuvo.com",
  "default_locale": "en",
  "action": {
    "default_icon": {
      "128": "assets/picky-icon-sticker-stroke-crop.png"
    }
  },
  "icons": {
    "128": "assets/picky-icon-sticker-stroke.png"
  },
  "background": {
    "scripts": [
      "js/serviceworker.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contentscript.js"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "webNavigation",
    "webRequest",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/contentscript.js",
        "js/service_worker.js",
        "assets/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}