Touch & Drag Scroller

Touch & Drag Scroller

Displays a button to scroll automatically when you drag a finger.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.0.2",
  "manifest_version": 2,
  "description": "__MSG_extExp__",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-1.9.1.min.js",
        "js/scroller.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "img/icon128.png"
  },
  "options_page": "options.html",
  "default_locale": "en"
}