Smooth Scroll

Smooth Scroll

Scroll your webpage without moving your palm off the center of keyboard

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Smooth Scroll",
  "author": "Daniel Han",
  "short_name": "Smooth Scrolling",
  "description": "Scroll your webpage without moving your palm off the center of keyboard",
  "version": "1.3",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png"
    },
    "default_title": "Smooth Scroll",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "http://*/",
    "https://*/",
    "file:///*/"
  ]
}