Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

Was ist Gmail 'Expand all' keyboard shortcut?

Gmail 'Expand all' keyboard shortcut ist eine Chrome-Erweiterung, die von [email protected] entwickelt wurde, und ihr Hauptmerkmal ist "Press Alt+A to expand or collapse a Gmail thread".

Erweiterungsscreenshots

screenshot

Gmail 'Expand all' keyboard shortcut-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gmail 'Expand all' keyboard shortcut-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/).                    

Grundlegende Informationen zur Erweiterung

Name Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Offizielle URL https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Beschreibung Press Alt+A to expand or collapse a Gmail thread
Dateigröße 8.66 KB
Installationsanzahl 1,803
Aktuelle Version 1.1
Letztes Update 2014-09-07
Veröffentlichungsdatum 2014-09-07
Bewertung 4.27/5 Insgesamt 11 Bewertungen
Entwickler [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}