Tcrossly - Crosslisting Assistant

Tcrossly - Crosslisting Assistant

Export to csv or download images of the products on depop, poshmark, vinted

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "0.0.1",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://*.depop.com/*",
        "https://*.vinted.com/*",
        "https://*.poshmark.com/*"
      ],
      "js": [
        "content/import-index.js"
      ]
    },
    {
      "matches": [
        "https://*.depop.com/*"
      ],
      "js": [
        "content/import-depop.js"
      ]
    },
    {
      "matches": [
        "https://*.poshmark.com/*"
      ],
      "js": [
        "content/import-poshmark.js"
      ]
    },
    {
      "matches": [
        "https://*.vinted.com/*"
      ],
      "js": [
        "content/import-vinted.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "popup/index.html"
  },
  "permissions": [
    "downloads",
    "storage"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "128": "icons/icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "content/index.js",
        "content/depop.js",
        "content/poshmark.js",
        "content/vinted.js"
      ],
      "matches": [
        "https://*.depop.com/*",
        "https://*.vinted.com/*",
        "https://*.poshmark.com/*"
      ]
    }
  ]
}