Disable AutoScroll

Disables middle-click autoscrolling (often confused with 'smooth scrolling')

Apa itu Disable AutoScroll?

Disable AutoScroll adalah ekstensi Chrome yang dikembangkan oleh Slackwise, dan fitur utamanya adalah "Disables middle-click autoscrolling (often confused with 'smooth scrolling')".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Disable AutoScroll

Unduh file ekstensi Disable AutoScroll 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

                        All this extension does is disable the middle-click "AutoScroll" feature so you don't accidentally activate it when trying to middle-click a link with your scroll-wheel to open a link in a new tab.

The screenshot is of the ENTIRE source-code, and it's all on GitHub as well.                    

Informasi Dasar Ekstensi

Nama Disable AutoScroll Disable AutoScroll
ID ggakmjgkpoeoiicikoohgojkoehmnhdc
URL Resmi https://chromewebstore.google.com/detail/disable-autoscroll/ggakmjgkpoeoiicikoohgojkoehmnhdc
Deskripsi Disables middle-click autoscrolling (often confused with 'smooth scrolling')
Ukuran File 13.33 KB
Jumlah Instalasi 1,455
Versi Saat Ini 1.2
Terakhir Diperbarui 2024-01-01
Tanggal Publikasi 2022-07-14
Penilaian 4.58/5 Total 24 Penilaian
Pengembang Slackwise
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Slackwise/disable-autoscroll-webextension
URL Halaman Bantuan https://github.com/Slackwise/disable-autoscroll-webextension/issues
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Disable AutoScroll",
    "short_name": "Disable AutoScroll",
    "description": "Disables middle-click autoscrolling (often confused with 'smooth scrolling')",
    "version": "1.2",
    "author": "Slackwise",
    "icons": {
        "48": "disable-autoscroll-48.png",
        "125": "disable-autoscroll-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "disable-autoscroll.js"
            ]
        }
    ]
}