Tree Style Tab Mouse Wheel

This add-on requires Tree Style Tab. It extends Tree Style Tab to allow tab changing by mouse wheel scrolling and reloading a tab when double clicking it.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "TST Mouse Wheel and Double Click",
  "version": "1.5.10",
  "description": "Allows tab changing by mousewheel and reload on double click.",
  "homepage_url": "https://github.com/joshuacant/",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "tst-wheel_and_double@dontpokebadgers.com",
      "strict_min_version": "102.0"
    }
  }
}