VIM typer
Use VIM keys in browser
Co to jest VIM typer?
VIM typer to rozszerzenie Chrome opracowane przez sculpt0r, a jego główną funkcją jest „Use VIM keys in browser”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia VIM typer
Pobierz pliki rozszerzeń VIM typer 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 extension allows use vim keys for text editing. Other vim plugins allows you to navigate in browser or webpage. This extension allows you to use vim keys while typing in input fields. Enable vim keys Plugins functionality can be toggled with special key combination: - `alt` + `v` on windows / linux - `right option` + `left cmd` on macOS It is because, sometimes you may don't want to `VIM typer` interfere with other vim like plugins. Please look at the indicator (small red square in top left corner). When it becomes green: the plugin functions are available. # supported keys Currently, `vim-typer` supports: - `h`,`j`,`k`,`l` - `e` - `w` has early support - more are planned
Podstawowe informacje o rozszerzeniu
Nazwa | VIM typer |
ID | cmepghbdejbphecnknahlhmkfjfcllki |
Oficjalny URL | https://chromewebstore.google.com/detail/vim-typer/cmepghbdejbphecnknahlhmkfjfcllki |
Opis | Use VIM keys in browser |
Rozmiar pliku | 5.62 KB |
Liczba instalacji | 106 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2023-11-03 |
Data Publikacji | 2021-06-01 |
Ocena | 4.00/5 Łącznie 4 Oceny |
Deweloper | sculpt0r |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sculpt0r/vim-browser-extension |
Adres URL Strony Pomocy | https://github.com/sculpt0r/vim-browser-extension/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VIM typer", "version": "1.1.0", "description": "Use VIM keys in browser", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*\/*" ], "js": [ ".\/plugin.js" ], "run_at": "document_start", "all_frames": true } ] } |