SupplyDrop

SupplyDrop

An automated inventory management and crosslisting tool for resellers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SupplyDrop",
  "description": "An automated inventory management and crosslisting tool for resellers.",
  "homepage_url": "https://supplydrop.ai",
  "version": "2.1.1",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlYvvlzcxFhPWKMUO8HjE5xdAkc8McHVEO0NRORCQ/q8OJIJwIUaxCHkjzX5ITjzJQH3GahgfxM9oqnOgJ/KemwpC8gnQ8YECq4aIe/Y7Xo1sTm2p2ox08k6MkCM9qvwtDw1TWPCaNUHMVq/qBzhqtn77jXeTAzTUhYKKJuB1L8qrdvJLcgqapeyrbam87Hn0oFkaR2dW0+PSg8VQaiQ2sqLjq5dq9xs2xsYSn6rFbYFEwVLim0vkZ5ZVVyYWqRL0EDUQQKQFsLNMEEXx1Kc4GhpkJ5YT3y0WsAPsJ2CAhwUNbp59i4EjR9+Kxp2D0ElJ4Ndje1BZPs6G9wlZnAw44QIDAQAB",
  "icons": {
    "48": "assets/48.png",
    "128": "assets/128.png"
  },
  "action": {
    "default_title": "AutoLister"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "marketplaces/facebook.js"
      ]
    },
    {
      "matches": [
        "https://*.mercari.com/*"
      ],
      "js": [
        "marketplaces/mercari.js"
      ]
    },
    {
      "matches": [
        "https://*.poshmark.com/*"
      ],
      "js": [
        "marketplaces/poshmark.js"
      ]
    },
    {
      "matches": [
        "https://*.varagesale.com/*"
      ],
      "js": [
        "marketplaces/varagesale.js"
      ]
    },
    {
      "matches": [
        "https://*.nextdoor.com/*"
      ],
      "js": [
        "marketplaces/nextdoor.js"
      ]
    },
    {
      "matches": [
        "https://*.walmart.com/*"
      ],
      "js": [
        "scrape/walmart.js"
      ]
    },
    {
      "matches": [
        "https://*.target.com/*"
      ],
      "js": [
        "scrape/target.js"
      ]
    },
    {
      "matches": [
        "https://*.homedepot.com/*"
      ],
      "js": [
        "scrape/homedepot.js"
      ]
    },
    {
      "matches": [
        "https://*.lowes.com/*"
      ],
      "js": [
        "scrape/lowes.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*.thdstatic.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.lunarutility.com/*",
      "http://localhost:3000/*",
      "https://*.supplydrop.ai/*"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "util/*"
      ]
    }
  ]
}