Sweatyboi

Sweatyboi

'Sweat' and 'Glisten' particle effects for your mouse cursor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sweatyboi",
  "version": "1.0",
  "description": "'Sweat' and 'Glisten' particle effects for your mouse cursor.",
  "homepage_url": "https://toadslick.github.io/sweaty-boi/",
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://toadslick.github.io/sweaty-boi/*"
      ],
      "js": [
        "index.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Sweatyboi",
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "icon-16.png",
      "32": "icon-32.png",
      "48": "icon-48.png",
      "128": "icon-128.png"
    }
  }
}