Force Scroll

Force Scroll

Allows you to scroll on any site, even sites where it is normally disabled (e.g. sites that lock scrolling when Adblockers are…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Force Scroll",
  "version": "0.1",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jQuery.js",
        "content.js"
      ]
    }
  ]
}