SelfScroll

This extension allow to automatically scroll the page. Suitable for monitors and kiosks.

Apa itu SelfScroll?

SelfScroll adalah ekstensi Chrome yang dikembangkan oleh https://zerobug.it, dan fitur utamanya adalah "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi SelfScroll

Unduh file ekstensi SelfScroll 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 extension allow to automatically scroll the page. Suitable for monitors and kiosks.

Buy me a coffe :D

Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc
Paypal: https://www.paypal.me/ZeroBug                    

Informasi Dasar Ekstensi

Nama SelfScroll SelfScroll
ID lofkbkbhpmeihoaogggfbhmjdekjihlf
URL Resmi https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf
Deskripsi This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
Ukuran File 132 KB
Jumlah Instalasi 1,476
Versi Saat Ini 1.4
Terakhir Diperbarui 2018-11-13
Tanggal Publikasi 2018-11-13
Penilaian 4.40/5 Total 5 Penilaian
Pengembang https://zerobug.it
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://zerobug.it/
Bahasa yang Didukung en,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SelfScroll",
    "version": "1.4",
    "description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.",
    "default_locale": "en",
    "icons": {
        "16": ".\/icons\/selfscroll_16.png",
        "48": ".\/icons\/selfscroll_48.png",
        "128": ".\/icons\/selfscroll_128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "selfscroll_script.js"
            ]
        }
    ],
    "options_ui": {
        "page": "selfscroll_options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "selfscroll_background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": ".\/icons\/selfscroll.png",
        "default_title": "SelfScroll"
    },
    "manifest_version": 2
}