Simple smooth scrolling

Simple smooth scrolling

Based on crxmouse, only smooth scrolling, and no background process.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "3.0",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_des__",
  "default_locale": "en",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/scroll.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "options_page": "html/options.html",
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage"
  ]
}