PriceWise: Automatic Price Comparison

PriceWise: Automatic Price Comparison

Save money and shop smarter with PriceWise, a free tool to help you with comparison shopping. Our browser extension automatically…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.1.1",
  "name": "PriceWise: Automatic Price Comparison",
  "description": "",
  "action": {
    "default_popup": "./popup.html",
    "default_icon": {
      "16": "./src/icons/logo-16.png",
      "32": "./src/icons/logo-32.png",
      "48": "./src/icons/logo-48.png",
      "128": "./src/icons/logo-128.png"
    },
    "default_title": "PriceWise"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "./src/icons/logo-16.png",
    "32": "./src/icons/logo-32.png",
    "48": "./src/icons/logo-48.png",
    "128": "./src/icons/logo-128.png"
  },
  "oauth2": {
    "client_id": "777998775976-eskgae30rcb3iab8u9ibv5ov267sf1hh.apps.googleusercontent.com",
    "scopes": []
  }
}