Disable Scrolling

This extension allows you to disable scrolling on your page.

Co je Disable Scrolling?

Disable Scrolling je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „This extension allows you to disable scrolling on your page.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Disable Scrolling

Stáhněte si soubory rozšíření Disable Scrolling ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Disable Scrolling Disable Scrolling
ID dmjigjnpimhlighaibpchommlmnlkmlg
Oficiální URL https://chromewebstore.google.com/detail/disable-scrolling/dmjigjnpimhlighaibpchommlmnlkmlg
Popis This extension allows you to disable scrolling on your page.
Velikost souboru 190 KB
Počet instalací 1,077
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-06-13
Datum Vydání 2020-06-13
Hodnocení 3.20/5 Celkem 10 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/ysun62/Disable-Scrolling-Extension
Podporované Jazyky 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"
    ]
}