eBay Fee Calculator 2022

eBay Fee Calculator 2022

Know your eBay selling fees, profit, and correct sale price

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "eBay Fee Calculator 2022",
  "version": "4.3",
  "description": "Know your eBay selling fees, profit, and correct sale price",
  "manifest_version": 3,
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "action": {
    "default_title": "3dSellers",
    "default_icon": "images/icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery-3.5.1.min.js",
        "content.js"
      ]
    }
  ],
  "background": {},
  "permissions": [],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}