Auto Scroll Extension

Auto Scroller for Chrome to help user scroll automatically

Apa itu Auto Scroll Extension?

Auto Scroll Extension adalah ekstensi Chrome yang dikembangkan oleh https://071yoon.github.io, dan fitur utamanya adalah "Auto Scroller for Chrome to help user scroll automatically".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Auto Scroll Extension

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

                        Auto Scroller for Chrome for automation
This Extension helps user to use scroller as automation form.
for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! 
And in addition, extension remembers your last option for scrolling, and will remain as that option.                    

Informasi Dasar Ekstensi

Nama Auto Scroll Extension Auto Scroll Extension
ID ppkbgpllhklbjlmmncjjgogcdphkaaho
URL Resmi https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho
Deskripsi Auto Scroller for Chrome to help user scroll automatically
Ukuran File 84.15 KB
Jumlah Instalasi 383
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2023-09-05
Tanggal Publikasi 2023-09-04
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://071yoon.github.io
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Scroll Extension",
    "description": "Auto Scroller for Chrome to help user scroll automatically",
    "manifest_version": 3,
    "version": "1.0.2",
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}