eBay Safe Sellers

eBay Safe Sellers

Protects eBay buyers by flagging potential fraudulent and malicious eBay sellers based a negative feedback ratio.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "eBay Safe Sellers",
  "version": "1.0.14.4",
  "author": "David Waterson",
  "short_name": "eBay Safe Sellers",
  "description": "Protects eBay buyers by flagging potential fraudulent and malicious eBay sellers based a negative feedback ratio.",
  "icons": {
    "48": "icons/ess_logo.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://www.ebay.com/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/ess_logo.png",
      "24": "icons/ess_logo.png",
      "32": "icons/ess_logo.png"
    },
    "default_title": "eBay Safe Sellers",
    "default_popup": "popup/settings.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/ess_logo.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "assets/js/jquery-3.3.1.min.js",
        "assets/js/ebay.js"
      ]
    }
  ]
}