Happeh Scroll

Happeh Scroll

This extension plays a sound when the mouse wheel is used

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Happeh Scroll",
  "short_name": "HappehScroll",
  "description": "This extension plays a sound when the mouse wheel is used",
  "version": "2.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Happeh Scroll"
  },
  "permissions": [
    "activeTab",
    "webNavigation",
    "*://*/*"
  ],
  "web_accessible_resources": [
    "whee.mp3"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  }
}