Dropshipping Titans Marketplace

Dropshipping Titans Marketplace

Automates your dropship listing creation for Facebook Marketplace and eBay.com (please note that the extension only works on…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dropshipping Titans Marketplace",
  "version": "3.5",
  "action": {
    "default_title": "Dropshipping Titans Marketplace",
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*"
      ],
      "js": [
        "facebook.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://bulksell.ebay.com/ws/eBayISAPI.dll*",
        "*://www.ebay.com/lstng?draftId=*",
        "*://*.picupload.ebay.com/picupload/main",
        "https://www.ebay.com/sl/prelist/identify*",
        "https://www.ebay.com/lstng*"
      ],
      "js": [
        "ebay.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.amazon.com/*",
        "*://*.walmart.com/*",
        "*://*.homedepot.com/*",
        "*://*.autods.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://v2-api.autods.com/products/*/list/"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "storage",
    "webRequest",
    "tabs",
    "contextMenus",
    "clipboardRead",
    "clipboardWrite"
  ]
}