Webpage Auto Scrolldown

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

Co to jest Webpage Auto Scrolldown?

Webpage Auto Scrolldown to rozszerzenie Chrome opracowane przez CommanderCactus, a jego główną funkcją jest „Automatically keeps you at the bottom of a page when clicked.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Webpage Auto Scrolldown

Pobierz pliki rozszerzeń Webpage Auto Scrolldown w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Webpage Auto Scrolldown Webpage Auto Scrolldown
ID aegbbdpcnbnddiipcggakoglcmlgejem
Oficjalny URL https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem
Opis Automatically keeps you at the bottom of a page when clicked.
Rozmiar pliku 14.53 KB
Liczba instalacji 3,000
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-03-13
Data Publikacji 2016-03-13
Ocena 4.15/5 Łącznie 20 Oceny
Deweloper CommanderCactus
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}