Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

Vad är Gmail 'Expand all' keyboard shortcut?

Gmail 'Expand all' keyboard shortcut är en Chrome-tillägg utvecklad av [email protected], och dess huvudfunktion är "Press Alt+A to expand or collapse a Gmail thread".

Tilläggsskärmbilder

screenshot

Ladda ner Gmail 'Expand all' keyboard shortcut-förlängningens CRX-fil

Ladda ner Gmail 'Expand all' keyboard shortcut-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Officiell webbadress https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Beskrivning Press Alt+A to expand or collapse a Gmail thread
Filstorlek 8.66 KB
Antal Installationer 1,803
Aktuell Version 1.1
Senast Uppdaterad 2014-09-07
Publiceringsdatum 2014-09-07
Betyg 4.27/5 Totalt 11 Betyg
Utvecklare [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}