Listifyx - Poshmark Bot

Listifyx - Poshmark Bot

Poshmark bot that automates all of the boring Poshmark tasks like relisting, sharing your closet, etc.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "16": "icon128.png",
      "48": "icon128.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "global.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.poshmark.com/*",
        "https://*.poshmark.ca/*",
        "https://*.poshmark.com.au/*"
      ]
    },
    {
      "js": [
        "x11.js"
      ],
      "matches": [
        "*://listifyx.chargebeeportal.com/*",
        "*://listifyx-test.chargebeeportal.com/*",
        "*://listifyx.chargebee.com/*",
        "*://listifyx-test.chargebee.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Poshmark bot that automates all of the boring Poshmark tasks like relisting, sharing your closet, etc.",
  "icons": {
    "16": "icon128.png",
    "48": "icon128.png",
    "128": "icon128.png"
  },
  "manifest_version": 3,
  "name": "Listifyx - Poshmark Bot",
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "version": "1.0",
  "web_accessible_resources": [
    {
      "extension_ids": [],
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "captcha_alert.mp3",
        "star-background.svg",
        "logo_migra_bold_gradient.png",
        "Montserrat-VariableFont_wght.ttf",
        "list-assist-logo.png",
        "Montserrat-VariableFont_wght.ttf",
        "icon16.png",
        "icon48.png"
      ],
      "use_dynamic_url": true
    }
  ]
}