Page Scroller

Page Scroller

Adds Scroll function to your mouse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Page Scroller",
  "version": "0.1.1",
  "manifest_version": 2,
  "description": "Adds Scroll function to your mouse.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_popup": "scroller.html",
    "default_icon": "icons/icon16.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs"
  ]
}