Poshmark Bot | PoshMarvel

Poshmark Bot | PoshMarvel

Browser extension for automating the poshmark website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    "icons/**",
    "img/**",
    "popup.html",
    "js/captcha-callback-runner.js"
  ],
  "permissions": [
    "storage",
    "notifications",
    "*://poshmark.com/*",
    "*://2captcha.com/*",
    "*://n376smrwjb.execute-api.us-east-2.amazonaws.com/*"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com ; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "*://poshmark.com/*"
      ],
      "js": [
        "js/content-script-chunk-vendors.js",
        "js/content-script.js"
      ],
      "all_frames": true,
      "css": [
        "css/content-script.css"
      ]
    }
  ],
  "browser_action": {
    "default_title": "__MSG_extName__"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "version": "1.3.6",
  "version_name": "1.3.6"
}