VIM typer
Use VIM keys in browser
O que é VIM typer?
VIM typer é uma extensão do Chrome desenvolvida por sculpt0r, e sua principal característica é "Use VIM keys in browser".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão VIM typer
Baixe arquivos de extensão VIM typer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | VIM typer |
ID | cmepghbdejbphecnknahlhmkfjfcllki |
URL Oficial | https://chromewebstore.google.com/detail/vim-typer/cmepghbdejbphecnknahlhmkfjfcllki |
Descrição | Use VIM keys in browser |
Tamanho do Arquivo | 5.62 KB |
Contagem de Instalações | 106 |
Versão Atual | 1.1.0 |
Última Atualização | 2023-11-03 |
Data de Publicação | 2021-06-01 |
Classificação | 4.00/5 Total de 4 Avaliações |
Desenvolvedor | sculpt0r |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sculpt0r/vim-browser-extension |
URL da Página de Ajuda | https://github.com/sculpt0r/vim-browser-extension/issues |
Idiomas Suportados | 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 } ] } |