Picky Price Comparison

Picky Price Comparison

Price comparison companion

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "4.0.6",
  "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": {
    "service_worker": "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://*/*"
      ]
    }
  ]
}