Endless Page Scroller

Endless Page Scroller

This extension allows you to start and stop the endless scrolling down on the pages of sites where this is 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": "Endless Page Scroller",
  "description": "This extension allows you to start and stop the endless scrolling down on the pages of sites where this is possible.",
  "version": "1.1",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "<all_urls>"
  ]
}