Posh Butler

Posh Butler

Auto share your posts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Posh Butler",
  "description": "Auto share your posts.",
  "version": "0.0.8",
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "Posh Butler"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "storage",
    "https://*.poshmark.com/*",
    "https://*.poshmark.ca/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.poshmark.com/*",
        "https://*.poshmark.ca/*"
      ],
      "js": [
        "./contentscript.js"
      ]
    }
  ]
}