Pricein | same product lower price

Pricein | same product lower price

Finds you a similar product but for a lower price, using product information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Pricein",
  "name": "Pricein | same product lower price",
  "description": "Finds you a similar product but for a lower price, using product information.",
  "icons": {
    "16": "favicon.ico",
    "48": "android-chrome-192x192.png",
    "128": "android-chrome-192x192.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentBundle.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "manifest_version": 3,
  "version": "1.0.4",
  "action": {
    "default_popup": "index.html",
    "default_title": "Pricein"
  }
}