Etsy Listing

Etsy Listing

A tool help users create listing in Etsy Market

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Etsy Listing",
  "version": "1.0",
  "description": "A tool help users create listing in Etsy Market",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://work-space.teamexp.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/helpers.js",
        "js/ws.js",
        "js/init.js",
        "js/content_scripts.js",
        "js/Platforms/etsy.js"
      ],
      "css": [
        "css/content-scripts.css"
      ],
      "html": [
        "html/etsy.html"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "html/popup.html"
  },
  "manifest_version": 3
}