Chrome Wheel

Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.

Co je Chrome Wheel?

Chrome Wheel je rozšíření Chrome vyvinuté http://samskivert.com, a jeho hlavní funkcí je „Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.“.

Stáhnout soubor CRX rozšíření Chrome Wheel

Stáhněte si soubory rozšíření Chrome Wheel 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í

                        Back in the good old days, ctrl-mousewheel or alt-mousewheel scrolled the page in large (full page) increments. That was actually useful. Then someone had the genius idea of making that scale the page up or down. Not so useful in my humble opinion, so this plugin restores the "scroll faster" behavior.                    

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

Název Chrome Wheel Chrome Wheel
ID ceooplgmfmmjjbmnmhnpnmkikmmcikbn
Oficiální URL https://chrome.google.com/webstore/detail/chrome-wheel/ceooplgmfmmjjbmnmhnpnmkikmmcikbn
Popis Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.
Velikost souboru 3.52 KB
Počet instalací 19
Aktuální Verze 1.0.1
Poslední Aktualizace 2016-12-02
Datum Vydání 2016-12-02
Hodnocení 3.00/5 Celkem 3 Hodnocení
Vývojář http://samskivert.com
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chrome Wheel",
    "version": "1.0.1",
    "description": "Makes alt\/shift\/ctrl-scrollwheel scroll in large increments instead of default behavior.",
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "chromewheel.js"
            ],
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}