Gmail 'Expand all' keyboard shortcut
Press Alt+A to expand or collapse a Gmail thread
Hvad er Gmail 'Expand all' keyboard shortcut?
Gmail 'Expand all' keyboard shortcut er en Chrome-udvidelse udviklet af [email protected], og dens hovedfunktion er "Press Alt+A to expand or collapse a Gmail thread".
Udvidelsesskærmbilleder
Download Gmail 'Expand all' keyboard shortcut-udvidelses-CRX-fil
Download Gmail 'Expand all' keyboard shortcut-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
| Officiel URL | https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
| Beskrivelse | Press Alt+A to expand or collapse a Gmail thread |
| Filstørrelse | 8.66 KB |
| Antal Installationer | 1,803 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2014-09-07 |
| Udgivelsesdato | 2014-09-07 |
| Bedømmelse | 4.27/5 Samlet 11 Bedømmelser |
| Udvikler | [email protected] |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
} | |