Learn the shortcuts
Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar
Τι είναι το Learn the shortcuts;
Το Learn the shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Matthieu G., και η κύρια λειτουργία του είναι "Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Learn the shortcuts
Λήψη αρχείων επέκτασης Learn the shortcuts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Did you know you can use keyboard shortcuts to do almost anything on some websites? Learn them with this extension and work faster! For now, it support Gmail, Trello, Github and Google Agenda Features: - Press and hold alt to see all the available shortcuts - When you hover over a button, you'll see the keyboard shortcut you can use Configuration for Gmail and Google Agenda: In order to use keyboard shortcuts in Gmail or in Google Agenda, they have to be enabled. If that's not already the case for you, go to Settings > General > Keyboard shortcuts and check the corresponding option
Βασικές Πληροφορίες Επέκτασης
Όνομα | Learn the shortcuts |
ID | glbfdjadjnpcloonbhhjahddhcclimld |
Επίσημο URL | https://chromewebstore.google.com/detail/learn-the-shortcuts/glbfdjadjnpcloonbhhjahddhcclimld |
Περιγραφή | Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar |
Μέγεθος Αρχείου | 57.41 KB |
Αριθμός Εγκαταστάσεων | 73 |
Τρέχουσα Έκδοση | 0.6.2 |
Τελευταία Ενημέρωση | 2020-04-01 |
Ημερομηνία Δημοσίευσης | 2020-03-26 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Matthieu G. |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/matthieu60/learn-the-shortcuts |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/matthieu60/learn-the-shortcuts |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Learn the shortcuts", "version": "0.6.2", "description": "Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar", "short_name": "LTS", "icons": { "16": "icons\/logo-16.png", "48": "icons\/logo-48.png", "128": "icons\/logo-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "shortcuts.js", "gmail.js" ] }, { "matches": [ "https:\/\/github.com\/*" ], "js": [ "shortcuts.js", "github.js" ] }, { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "shortcuts.js", "trello.js" ] }, { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "shortcuts.js", "google-calendar.js" ] } ], "permissions": [], "web_accessible_resources": [ "shortcuts.js", "gmail.js", "github.js", "trello.js", "google-calendar.js" ] } |