Click to Fart

Click to Fart

A fart sound will be played whenever the mouse is clicked or held down

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Click to Fart",
  "version": "1.0",
  "permissions": [
    "storage"
  ],
  "description": "A fart sound will be played whenever the mouse is clicked or held down",
  "author": "[email protected]",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "click_sound.mp3",
        "long_click_sound.mp3"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}