Learn the shortcuts

Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar

Qu'est-ce que Learn the shortcuts ?

Learn the shortcuts est une extension Chrome développée par Matthieu G., et sa fonction principale est "Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Learn the shortcuts

Téléchargez les fichiers d'extension Learn the shortcuts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Learn the shortcuts Learn the shortcuts
ID glbfdjadjnpcloonbhhjahddhcclimld
URL Officiel https://chromewebstore.google.com/detail/learn-the-shortcuts/glbfdjadjnpcloonbhhjahddhcclimld
Description Learn keyboard shortcuts painlessly for Gmail, Trello, Github & Google Calendar
Taille du Fichier 57.41 KB
Nombre d'Installations 73
Version Actuelle 0.6.2
Dernière Mise à Jour 2020-04-01
Date de Publication 2020-03-26
Évaluation 5.00/5 Total 2 Évaluations
Développeur Matthieu G.
Type de Paiement free
Site Web de l'Extension https://github.com/matthieu60/learn-the-shortcuts
URL de la Page d'Aide https://github.com/matthieu60/learn-the-shortcuts
Langues Prises en Charge 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"
    ]
}