Disable Scrolling

This extension allows you to disable scrolling on your page.

Apa itu Disable Scrolling?

Disable Scrolling adalah ekstensi Chrome yang dikembangkan oleh Unknown, dan fitur utamanya adalah "This extension allows you to disable scrolling on your page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Disable Scrolling

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

                        Ever tried searching for a word in the current viewport, but the Find Bar takes you to "random" sections of the page, making you lose track of the section you were just reading?

Try using this chrome extension to temporarily disable scrolling of the current page before you use Find, so that you can stay where you are while Find searches all the instances for you.

* Note: please refresh any pre-existing tabs after installation.                    

Informasi Dasar Ekstensi

Nama Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
URL Resmi https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Deskripsi This extension allows you to disable scrolling on your page.
Ukuran File 190 KB
Jumlah Instalasi 1,077
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2020-06-13
Tanggal Publikasi 2020-06-13
Penilaian 3.20/5 Total 10 Penilaian
Pengembang Unknown
Tipe Pembayaran free
Situs Ekstensi https://github.com/ysun62/Disable-Scrolling-Extension
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Disable Scrolling",
    "description": "This extension allows you to disable scrolling on your page.",
    "version": "1.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "permissions": [
        "storage",
        "activeTab"
    ]
}