Gmail 'Expand all' keyboard shortcut

Press Alt+A to expand or collapse a Gmail thread

Co to jest Gmail 'Expand all' keyboard shortcut?

Gmail 'Expand all' keyboard shortcut to rozszerzenie Chrome opracowane przez [email protected], a jego główną funkcją jest „Press Alt+A to expand or collapse a Gmail thread”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Gmail 'Expand all' keyboard shortcut

Pobierz pliki rozszerzeń Gmail 'Expand all' keyboard shortcut w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Gmail 'Expand all' keyboard shortcut Gmail 'Expand all' keyboard shortcut
ID ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Oficjalny URL https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb
Opis Press Alt+A to expand or collapse a Gmail thread
Rozmiar pliku 8.66 KB
Liczba instalacji 1,803
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2014-09-07
Data Publikacji 2014-09-07
Ocena 4.27/5 Łącznie 11 Oceny
Deweloper [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}