Webpage Auto Scrolldown

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

Qu'est-ce que Webpage Auto Scrolldown ?

Webpage Auto Scrolldown est une extension Chrome développée par CommanderCactus, et sa fonction principale est "Automatically keeps you at the bottom of a page when clicked.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Webpage Auto Scrolldown

Téléchargez les fichiers d'extension Webpage Auto Scrolldown au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Webpage Auto Scrolldown Webpage Auto Scrolldown
ID aegbbdpcnbnddiipcggakoglcmlgejem
URL Officiel https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem
Description Automatically keeps you at the bottom of a page when clicked.
Taille du Fichier 14.53 KB
Nombre d'Installations 3,000
Version Actuelle 1.0
Dernière Mise à Jour 2016-03-13
Date de Publication 2016-03-13
Évaluation 4.15/5 Total 20 Évaluations
Développeur CommanderCactus
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}