Scroll Speed

Change the scroll speed

Apa itu Scroll Speed?

Scroll Speed adalah ekstensi Chrome yang dikembangkan oleh Bert Hekman, dan fitur utamanya adalah "Change the scroll speed".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Scroll Speed

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

                        Change the scrolling speed of the mouse wheel                    

Informasi Dasar Ekstensi

Nama Scroll Speed Scroll Speed
ID mfmhdfkinffhnfhaalnabffcfjgcmdhl
URL Resmi https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl
Deskripsi Change the scroll speed
Ukuran File 10.95 KB
Jumlah Instalasi 3,683
Versi Saat Ini 0.1
Terakhir Diperbarui 2020-04-27
Tanggal Publikasi 2020-04-23
Penilaian 4.28/5 Total 29 Penilaian
Pengembang Bert Hekman
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/DemonTPx/chrome-scroll-speed
URL Halaman Bantuan https://github.com/DemonTPx/chrome-scroll-speed/issues
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Speed",
    "version": "0.1",
    "description": "Change the scroll speed",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "exclude_globs": [
                "*.pdf"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}