Yet Another Smooth Scrolling WE

Yet Another Smooth Scrolling WE

Replaces scrolling with the mouse wheel and the arrow keys into totally customizable smooth one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Yet Another Smooth Scrolling WE",
  "version": "2.0.12",
  "description": "__MSG_extensionDescription__",
  "author": "kataho",
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "icons": {
    "32": "img/wheel.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "yetanothersmoothscrollingwe@kataho",
      "strict_min_version": "60.0"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "util.js",
        "scroller.js",
        "content.js"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "util.js",
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": {
      "16": "img/wheel16.png",
      "32": "img/wheel.png"
    },
    "default_title": "Smooth Scroll",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "img/edgebgbot.png",
    "img/edgebgtop.png"
  ]
}