Checkvist extended commands
Adds some more VIM oriented commands to Checkvist
Cos'è Checkvist extended commands?
Checkvist extended commands è un'estensione di Chrome sviluppata da NicoSantangelo, e la sua funzione principale è "Adds some more VIM oriented commands to Checkvist".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Checkvist extended commands
Scarica i file di estensione Checkvist extended commands 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
# What It adds four new commands to Checkvist (https://checkvist.com) Commands: l - Expand node (same as `→`) L - Focus the list item (same as `Shift →`) h - Collapse node (same as `←`) H - Un-focus the list item (same as `Shift ←`) o - Add below (same as `enter`) O - Add above (same as `alt+enter`) G - Go to the last item in the tree (same as `End` or `Fn+Down`) alt+g alt+g - Go to the first item in the tree (same as `Home` or `Fn+Up`) meta+j - macOS users: Move list items down (same as `⌘ ↓`) meta+k - macOS users: Move list items up (same as `⌘ ↑`) You can find the code at https://github.com/NicoSantangelo/checkvist-extended-commands
Informazioni di Base sull'Estensione
Nome | Checkvist extended commands |
ID | fofahggocngkjhdjmpplnaebognbkfmo |
URL Ufficiale | https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo |
Descrizione | Adds some more VIM oriented commands to Checkvist |
Dimensione del File | 41.83 KB |
Conteggio Installazioni | 28 |
Versione Corrente | 2.2.0 |
Ultimo Aggiornamento | 2017-04-24 |
Data di Pubblicazione | 2017-04-23 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | NicoSantangelo |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/NicoSantangelo/checkvist-extended-commands |
URL della Pagina di Aiuto | https://github.com/NicoSantangelo/checkvist-extended-commands |
URL della Pagina della Politica sulla Privacy | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Checkvist extended commands", "description": "Adds some more VIM oriented commands to Checkvist", "short_name": "Checkvist commands", "version": "2.2.0", "icons": { "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "https:\/\/checkvist.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "commands.js" ] } |