Fiverr Blur

Fiverr Blur

Blur the account balance in fiverr and shows on hover

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Fiverr Blur",
  "description": "Blur the account balance in fiverr and shows on hover",
  "version": "1.2",
  "icons": {
    "16": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.fiverr.com/*",
        "*://*.fiverr.com/*"
      ],
      "css": [
        "content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "img/icon.png"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ]
}