Poshmark Bot - Ok Alice

Poshmark Bot - Ok Alice

Alice helps you make more sales and gain more followers on Poshmark. Automatically share items in your closet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Alice helps you make more sales and gain more followers on Poshmark. Automatically share items in your closet.",
  "version": "1.0.1.1",
  "manifest_version": 2,
  "name": "Poshmark Bot - Ok Alice",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/favicon.png",
    "32": "icons/[email protected]",
    "48": "icons/[email protected]",
    "128": "icons/[email protected]"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "storage",
    "alarms",
    "unlimitedStorage",
    "*://*.poshmark.ca/*",
    "*://*.poshmark.com/*",
    "*://*.2captcha.com/*",
    "*://2captcha.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.poshmark.ca/*",
        "*://*.poshmark.com/*"
      ],
      "js": [
        "./content.bundle.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com https://js.stripe.com/v3; object-src 'self'"
}