Let's Compare - Same Product Less Money!

Let's Compare - Same Product Less Money!

Let's Compare is a powerful all-in-1 shopping assistant which allows users to shop, compare and save items for future purchases.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Let's Compare - Same Product Less Money!",
  "short_name": "Let's Compare",
  "version": "2.0.5",
  "manifest_version": 3,
  "description": "Let's Compare is a powerful all-in-1 shopping assistant which allows users to shop, compare and save items for future purchases.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "src/bg/background.js"
  },
  "action": {
    "default_title": "Let's Compare - compare and save items for future purchases.",
    "default_icon": "icons/icon19.png"
  },
  "permissions": [
    "storage",
    "webNavigation",
    "declarativeNetRequest",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "imgs/*",
        "fonts/*",
        "src/inject/*.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "homepage_url": "https://letscompare.deals",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "css": [
        "src/inject/inject-fonts.css"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}