Webpage Auto Scrolldown

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

What is Webpage Auto Scrolldown?

Webpage Auto Scrolldown is a Chrome extension developed by CommanderCactus, and its main feature is "Automatically keeps you at the bottom of a page when clicked.".

Extension Screenshots

Download Webpage Auto Scrolldown Extension CRX File

Download Webpage Auto Scrolldown extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Literally scrolls to the bottom of the page. That's it.

Click it once to activate it, click it again to deactivate.

Probably a lot of bugs.

Go forth and be productive, I guess.                    

Extension Basic Information

Name Webpage Auto Scrolldown Webpage Auto Scrolldown
ID aegbbdpcnbnddiipcggakoglcmlgejem
Official URL https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem
Description Automatically keeps you at the bottom of a page when clicked.
File Size 14.53 KB
Installation Count 3,000
Current Version 1.0
Last Updated 2016-03-13
Publish Date 2016-03-13
Rating 4.15/5 Total 20 Ratings
Developer CommanderCactus
Payment Type free
Supported Languages en
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"
        }
    ]
}