Fiverr Seller Assistant

Fiverr Seller Assistant

Fiverr Seller Assistant helps you see buyer request details, show notifications, hide balance & much more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Fiverr Seller Assistant",
  "description": "Fiverr Seller Assistant helps you see buyer request details, show notifications, hide balance & much more",
  "version": "1",
  "background": {
    "service_worker": "background/service_worker.js"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.fiverr.com/*"
      ],
      "js": [
        "content/hideBalance.js"
      ]
    },
    {
      "matches": [
        "https://www.fiverr.com/users/*"
      ],
      "js": [
        "content/buyerRequestsDetails.js",
        "content/profilePopup.js"
      ],
      "css": [
        "content/profilePopup.css"
      ]
    },
    {
      "matches": [
        "https://www.fiverr.com/inbox/*"
      ],
      "js": [
        "content/inboxPopupCalculator.js",
        "content/offerMoneyCalculator.js"
      ],
      "css": [
        "content/moneyCalculator.css"
      ]
    }
  ],
  "permissions": [
    "storage",
    "alarms",
    "notifications",
    "background"
  ],
  "host_permissions": [
    "https://*/*",
    "https://www.fiverr.com/*",
    "https://fiverr.com/*"
  ]
}