Size Wise

Size Wise

Size Wise is the solution for anyone who’s ever been trying to find clothes that fit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Size Wise",
  "version": "1.0.4",
  "description": "Size Wise is the solution for anyone who’s ever been trying to find clothes that fit.",
  "manifest_version": 3,
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "128": "/images/logo128.png"
    }
  },
  "icons": {
    "128": "/images/logo128.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/markFilterProducts.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}