Webpage Auto Scrolldown

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

Wat is Webpage Auto Scrolldown?

Webpage Auto Scrolldown is een Chrome-extensie ontwikkeld door CommanderCactus, en de belangrijkste functie is "Automatically keeps you at the bottom of a page when clicked.".

Extensie Screenshots

Download het CRX-bestand van de extensie Webpage Auto Scrolldown

Download Webpage Auto Scrolldown-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Webpage Auto Scrolldown Webpage Auto Scrolldown
ID aegbbdpcnbnddiipcggakoglcmlgejem
Officiële URL https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem
Beschrijving Automatically keeps you at the bottom of a page when clicked.
Bestandsgrootte 14.53 KB
Aantal Installaties 3,000
Huidige Versie 1.0
Laatst Bijgewerkt 2016-03-13
Publicatiedatum 2016-03-13
Beoordeling 4.15/5 Totaal 20 Beoordelingen
Ontwikkelaar CommanderCactus
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}