VIM typer

Use VIM keys in browser

Cos'è VIM typer?

VIM typer è un'estensione di Chrome sviluppata da sculpt0r, e la sua funzione principale è "Use VIM keys in browser".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione VIM typer

Scarica i file di estensione VIM typer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome VIM typer VIM typer
ID cmepghbdejbphecnknahlhmkfjfcllki
URL Ufficiale https://chromewebstore.google.com/detail/vim-typer/cmepghbdejbphecnknahlhmkfjfcllki
Descrizione Use VIM keys in browser
Dimensione del File 5.62 KB
Conteggio Installazioni 106
Versione Corrente 1.1.0
Ultimo Aggiornamento 2023-11-03
Data di Pubblicazione 2021-06-01
Valutazione 4.00/5 Totale 4 Valutazioni
Sviluppatore sculpt0r
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sculpt0r/vim-browser-extension
URL della Pagina di Aiuto https://github.com/sculpt0r/vim-browser-extension/issues
Lingue Supportate 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
        }
    ]
}