No-Alt-Mouse-Wheel
Prevent mouse wheel scrolling if alt is pressed
Co to jest No-Alt-Mouse-Wheel?
No-Alt-Mouse-Wheel to rozszerzenie Chrome opracowane przez Lars Kiesow, a jego główną funkcją jest „Prevent mouse wheel scrolling if alt is pressed”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia No-Alt-Mouse-Wheel
Pobierz pliki rozszerzeń No-Alt-Mouse-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
This comes in handy if system events are already bound to scrolling with modifier keys like for example the window managers desktop zoom accessibility feature which would otherwise cause page-scrolling in Chrome every time it is being used.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | hhkhclphjffknpneoimgmpegghdfgmjb |
Oficjalny URL | https://chromewebstore.google.com/detail/no-alt-mouse-wheel/hhkhclphjffknpneoimgmpegghdfgmjb |
Opis | Prevent mouse wheel scrolling if alt is pressed |
Rozmiar pliku | 16.6 KB |
Liczba instalacji | 31 |
Aktualna Wersja | 0.2 |
Ostatnia Aktualizacja | 2019-03-20 |
Data Publikacji | 2019-03-14 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | Lars Kiesow |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/lkiesow/chromw-no-alt-mouse-wheel |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No-Alt-Mouse-Wheel", "description": "Prevent mouse wheel scrolling if alt is pressed", "version": "0.2", "author": "Lars Kiesow", "homepage_url": "https:\/\/github.com\/lkiesow\/chromw-no-alt-mouse-wheel", "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "no-alt-wheel.js" ] } ] } |