Size Guarantee

Size Guarantee

Size guarantee selects a best fit dress on your favourite e-commerce store powered by AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Size Guarantee",
  "version": "1.6",
  "description": "Size guarantee selects a best fit dress on your favourite e-commerce store powered by AI.",
  "content_scripts": [
    {
      "matches": [
        "https://www.myntra.com/*",
        "https://www.target.com.au/*",
        "https://en-ae.namshi.com/*",
        "https://www.lifestylestores.com/*",
        "https://www.kmart.com.au/*",
        "https://www.bigw.com.au/*",
        "https://www.catch.com.au/*"
      ],
      "js": [
        "app.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "css": [
      "styles.css"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.jpg",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "browser_action": {}
}