ReScroll

ReScroll

Repeatedly scroll a page, reloading the page when the bottom is reached.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ReScroll",
  "description": "Repeatedly scroll a page",
  "version": "0.0.3",
  "author": "jhoekx",
  "homepage_url": "https://github.com/jhoekx/rescroll",
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "icons/scroll.svg",
    "96": "icons/scroll.svg"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/scroll.svg",
      "32": "icons/scroll.svg"
    },
    "default_title": "Toggle automatic scrolling"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*",
        "file:///*"
      ],
      "js": [
        "rescroll.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{d0e99c5e-0f9a-4ddc-94f9-1112dd0be7a3}"
    }
  }
}