Auto Scroll

Automatically scroll down on your current web page

Apa itu Auto Scroll?

Auto Scroll adalah ekstensi Chrome yang dikembangkan oleh PracticalApplications, dan fitur utamanya adalah "Automatically scroll down on your current web page".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Auto Scroll

Unduh file ekstensi Auto Scroll 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

                        This chrome extension allows you to automatically scroll down the page with a click of a button.

This chrome extension is perfect for reading any web page of your choice.                    

Informasi Dasar Ekstensi

Nama Auto Scroll Auto Scroll
ID pnmppanpmcimcfnkhkcpnmomiiomchpd
URL Resmi https://chrome.google.com/webstore/detail/auto-scroll/pnmppanpmcimcfnkhkcpnmomiiomchpd
Deskripsi Automatically scroll down on your current web page
Ukuran File 44.83 KB
Jumlah Instalasi 460
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-02-20
Tanggal Publikasi 2018-02-20
Penilaian 3.75/5 Total 4 Penilaian
Pengembang PracticalApplications
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Automatically scroll down on your current web page",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "editor.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "editor.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}