Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

Τι είναι το Gmail 'Expand all' keyboard shortcut;

Το Gmail 'Expand all' keyboard shortcut είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον [email protected], και η κύρια λειτουργία του είναι "Press Alt+A to expand or collapse a Gmail thread".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Gmail 'Expand all' keyboard shortcut

Λήψη αρχείων επέκτασης Gmail 'Expand all' keyboard shortcut σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Press Alt+A to expand or collapse a Gmail conversation thread.

To change the keyboard shortcut click "Keyboard shortcuts" on the extensions page (chrome://extensions/).                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Επίσημο URL https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Περιγραφή Press Alt+A to expand or collapse a Gmail thread
Μέγεθος Αρχείου 8.66 KB
Αριθμός Εγκαταστάσεων 1,803
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2014-09-07
Ημερομηνία Δημοσίευσης 2014-09-07
Αξιολόγηση 4.27/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail 'Expand all' keyboard shortcut",
    "description": "Press Alt+A to expand or collapse a Gmail thread",
    "version": "1.1",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-expand-all": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Send a 'toggle-expand-all' event to the extension"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}