Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

What is Gmail 'Expand all' keyboard shortcut?

Gmail 'Expand all' keyboard shortcut is a Chrome extension developed by [email protected], and its main feature is "Press Alt+A to expand or collapse a Gmail thread".

Extension Screenshots

screenshot

Download Gmail 'Expand all' keyboard shortcut Extension CRX File

Download Gmail 'Expand all' keyboard shortcut extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Official URL https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Description Press Alt+A to expand or collapse a Gmail thread
File Size 8.66 KB
Installation Count 1,803
Current Version 1.1
Last Updated 2014-09-07
Publish Date 2014-09-07
Rating 4.27/5 Total 11 Ratings
Developer [email protected]
Payment Type free
Supported Languages 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"
    }
}