Chrome Wheel
Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.
Co to jest Chrome Wheel?
Chrome Wheel to rozszerzenie Chrome opracowane przez http://samskivert.com, a jego główną funkcją jest „Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior.”.
Pobierz plik CRX rozszerzenia Chrome Wheel
Pobierz pliki rozszerzeń Chrome Wheel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
Oficjalny URL | https://chrome.google.com/webstore/detail/chrome-wheel/ceooplgmfmmjjbmnmhnpnmkikmmcikbn |
Opis | Makes alt/shift/ctrl-scrollwheel scroll in large increments instead of default behavior. |
Rozmiar pliku | 3.52 KB |
Liczba instalacji | 19 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2016-12-02 |
Data Publikacji | 2016-12-02 |
Ocena | 3.00/5 Łącznie 3 Oceny |
Deweloper | http://samskivert.com |
Typ Płatności | free |
Obsługiwane Języki | 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 } ] } |