Webpage Auto Scrolldown

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

Vad är Webpage Auto Scrolldown?

Webpage Auto Scrolldown är en Chrome-tillägg utvecklad av CommanderCactus, och dess huvudfunktion är "Automatically keeps you at the bottom of a page when clicked.".

Tilläggsskärmbilder

Ladda ner Webpage Auto Scrolldown-förlängningens CRX-fil

Ladda ner Webpage Auto Scrolldown-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Webpage Auto Scrolldown Webpage Auto Scrolldown
ID aegbbdpcnbnddiipcggakoglcmlgejem
Officiell webbadress https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem
Beskrivning Automatically keeps you at the bottom of a page when clicked.
Filstorlek 14.53 KB
Antal Installationer 3,000
Aktuell Version 1.0
Senast Uppdaterad 2016-03-13
Publiceringsdatum 2016-03-13
Betyg 4.15/5 Totalt 20 Betyg
Utvecklare CommanderCactus
Betalningssätt free
Stödda Språk 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"
        }
    ]
}