Gmail 'Expand all' keyboard shortcut
Press Alt+A to expand or collapse a Gmail thread
Cos'è Gmail 'Expand all' keyboard shortcut?
Gmail 'Expand all' keyboard shortcut è un'estensione di Chrome sviluppata da [email protected], e la sua funzione principale è "Press Alt+A to expand or collapse a Gmail thread".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gmail 'Expand all' keyboard shortcut
Scarica i file di estensione Gmail 'Expand all' keyboard shortcut in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/). Informazioni di Base sull'Estensione
| Nome | |
| ID | ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
| URL Ufficiale | https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
| Descrizione | Press Alt+A to expand or collapse a Gmail thread |
| Dimensione del File | 8.66 KB |
| Conteggio Installazioni | 1,803 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2014-09-07 |
| Data di Pubblicazione | 2014-09-07 |
| Valutazione | 4.27/5 Totale 11 Valutazioni |
| Sviluppatore | [email protected] |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |