VIM typer
Use VIM keys in browser
Что такое VIM typer?
VIM typer - это расширение Chrome, разработанное sculpt0r, и его основная функция - "Use VIM keys in browser".
Снимки экрана расширения
Скачать файл CRX расширения VIM typer
Скачайте файлы расширений VIM typer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | VIM typer |
ID | cmepghbdejbphecnknahlhmkfjfcllki |
Официальный URL | https://chromewebstore.google.com/detail/vim-typer/cmepghbdejbphecnknahlhmkfjfcllki |
Описание | Use VIM keys in browser |
Размер файла | 5.62 KB |
Количество установок | 106 |
Текущая Версия | 1.1.0 |
Последнее Обновление | 2023-11-03 |
Дата публикации | 2021-06-01 |
Рейтинг | 4.00/5 Всего 4 оценок |
Разработчик | sculpt0r |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/sculpt0r/vim-browser-extension |
URL страницы помощи | https://github.com/sculpt0r/vim-browser-extension/issues |
Поддерживаемые языки | 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 } ] } |