Poshmark | PosherVA

Poshmark | PosherVA

A Poshmark automated virtual assistant that helps you share items, get more followers, and growth your Poshmark sales.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Poshmark | PosherVA",
  "description": "A Poshmark automated virtual assistant that helps you share items, get more followers, and growth your Poshmark sales.",
  "version": "1.4.74",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_title": "PosherVA | Poshmark™",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.poshmark.com/closet*",
        "*://*.poshmark.com/user*"
      ],
      "js": [
        "contentscript.js"
      ],
      "css": [
        "contentscript.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "*://*.poshmark.com/*",
    "*://*.posherva.com/*",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "activeTab",
    "alarms",
    "background",
    "unlimitedStorage"
  ],
  "optional_permissions": [
    "*://*.cloudfront.net/*"
  ],
  "web_accessible_resources": [
    "images/*",
    "fonts"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' http://localhost:8098 https://www.google-analytics.com/analytics.js https://ssl.google-analytics.com; object-src 'self'"
}