Marketplace Listings Reposter

Marketplace Listings Reposter

Use this extension to repost your listings on the Facebook Marketplace with ease!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Marketplace Listings Reposter",
  "description": "Use this extension to repost your listings on the Facebook Marketplace with ease!",
  "version": "1.44",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://www.facebook.com/*",
    "https://m.facebook.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/assets/loading.html",
        "/assets/loading.css",
        "/assets/network_listener.js"
      ],
      "matches": [
        "https://www.facebook.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "icons": {
    "16": "favicon16x16.png",
    "32": "favicon32x32.png",
    "128": "favicon128x128.png"
  },
  "options_page": "./assets/options.html"
}