VintiesCloset: Sale more, spend less

VintiesCloset: Sale more, spend less

Boost your sales on Depop and Vinted and save time every day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.0.30",
  "options_ui": {
    "page": "./html/options.html",
    "chrome_style": true
  },
  "icons": {
    "16": "./icons/icon16.png",
    "48": "./icons/icon48.png",
    "128": "./icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "./icons/icon.png",
    "default_title": "__MSG_extensionName__"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.vinted.net/*",
        "https://www.vinted.at/*",
        "https://www.vinted.be/*",
        "https://www.vinted.cz/*",
        "https://www.vinted.de/*",
        "https://www.vinted.es/*",
        "https://www.vinted.fr/*",
        "https://www.vinted.lt/*",
        "https://www.vinted.lu/*",
        "https://www.vinted.pl/*",
        "https://www.vinted.pt/*",
        "https://www.vinted.it/*",
        "https://www.vinted.nl/*",
        "https://www.depop.com/*",
        "https://www.vinted.com/*",
        "https://www.vinted.co.uk/*"
      ],
      "js": [
        "./js/index.js",
        "./js/vendor.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "./js/_depop_background.js",
      "./js/_vinted_background.js",
      "./js/vendor.js"
    ],
    "persistent": true
  },
  "minimum_chrome_version": "64",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "activeTab",
    "https://*.depop.com/*",
    "https://*.vinted.at/*",
    "https://*.vinted.be/*",
    "https://*.vinted.co.uk/*",
    "https://*.vinted.com/*",
    "https://*.vinted.cz/*",
    "https://*.vinted.de/*",
    "https://*.vinted.es/*",
    "https://*.vinted.fr/*",
    "https://*.vinted.it/*",
    "https://*.vinted.lt/*",
    "https://*.vinted.lu/*",
    "https://*.vinted.net/*",
    "https://*.vinted.nl/*",
    "https://*.vinted.pl/*",
    "https://*.vinted.pt/*",
    "https://*.pixlr.com/*",
    "https://*.sentry.io/*",
    "https://*.supabase.co/*"
  ],
  "default_locale": "en",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.depop.com/*",
      "https://*.vinted.at/*",
      "https://*.vinted.be/*",
      "https://*.vinted.co.uk/*",
      "https://*.vinted.com/*",
      "https://*.vinted.cz/*",
      "https://*.vinted.de/*",
      "https://*.vinted.es/*",
      "https://*.vinted.fr/*",
      "https://*.vinted.it/*",
      "https://*.vinted.lt/*",
      "https://*.vinted.lu/*",
      "https://*.vinted.net/*",
      "https://*.vinted.nl/*",
      "https://*.vinted.pl/*",
      "https://*.vinted.pt/*"
    ]
  }
}