Webpage Auto Scrolldown

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

Apa itu Webpage Auto Scrolldown?

Webpage Auto Scrolldown adalah ekstensi Chrome yang dikembangkan oleh CommanderCactus, dan fitur utamanya adalah "Automatically keeps you at the bottom of a page when clicked.".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi Webpage Auto Scrolldown

Unduh file ekstensi Webpage Auto Scrolldown dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Webpage Auto Scrolldown Webpage Auto Scrolldown
ID aegbbdpcnbnddiipcggakoglcmlgejem
URL Resmi https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem
Deskripsi Automatically keeps you at the bottom of a page when clicked.
Ukuran File 14.53 KB
Jumlah Instalasi 3,000
Versi Saat Ini 1.0
Terakhir Diperbarui 2016-03-13
Tanggal Publikasi 2016-03-13
Penilaian 4.15/5 Total 20 Penilaian
Pengembang CommanderCactus
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}