PageScroll (Re-)Enabler

PageScroll (Re-)Enabler

This extension re-enables the possibility to scroll by mouse-wheel on Websites, where this is'nt possible.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extname__",
  "author": "Kevin Köllmann",
  "description": "__MSG_extdescr__",
  "version": "1.0.2",
  "minimum_chrome_version": "22",
  "default_locale": "de",
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    },
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}