Checkvist extended commands
Adds some more VIM oriented commands to Checkvist
Τι είναι το Checkvist extended commands;
Το Checkvist extended commands είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον NicoSantangelo, και η κύρια λειτουργία του είναι "Adds some more VIM oriented commands to Checkvist".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Checkvist extended commands
Λήψη αρχείων επέκτασης Checkvist extended commands σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
# 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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Checkvist extended commands |
ID | fofahggocngkjhdjmpplnaebognbkfmo |
Επίσημο URL | https://chromewebstore.google.com/detail/checkvist-extended-comman/fofahggocngkjhdjmpplnaebognbkfmo |
Περιγραφή | Adds some more VIM oriented commands to Checkvist |
Μέγεθος Αρχείου | 41.83 KB |
Αριθμός Εγκαταστάσεων | 28 |
Τρέχουσα Έκδοση | 2.2.0 |
Τελευταία Ενημέρωση | 2017-04-24 |
Ημερομηνία Δημοσίευσης | 2017-04-23 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | NicoSantangelo |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/NicoSantangelo/checkvist-extended-commands |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/NicoSantangelo/checkvist-extended-commands |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md |
Υποστηριζόμενες Γλώσσες | 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" ] } |