Webpage Auto Scrolldown

Webpage Auto Scrolldown

Automatically keeps you at the bottom of a page when clicked.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Webpage Auto Scrolldown",
  "description": "Automatically keeps you at the bottom of a page when clicked.",
  "version": "1.0",
  "short_name": "Auto Scroller",
  "icons": {
    "16": "ico16.png",
    "48": "ico48.png",
    "128": "ico128.png"
  },
  "background": {
    "scripts": [
      "bgcomm.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "alarms"
  ],
  "browser_action": {
    "default_title": "KICK IT INTO OVERDRIIIIIIVE"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "autoscroll.js"
      ],
      "run_at": "document_end"
    }
  ]
}