Poshmark Extension

Poshmark Extension

Poshmark makes shopping fun, affordable & easy. Find new and preloved search items from task bar icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Poshmark Extension",
  "version": "221.53.13.811",
  "description": "Poshmark makes shopping fun, affordable & easy. Find new and preloved search items from task bar icon.",
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png"
    },
    "default_popup": "html/popup/popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/contentscript.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "js/contentscript2.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "externally_connectable": {
    "matches": [
      "*://*.buy-sell-fashion.com/*",
      "*://buy-sell-fashion.com/*"
    ]
  },
  "permissions": [
    "cookies",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    "*.json"
  ]
}