Gmail 'Expand all' keyboard shortcut
Press Alt+A to expand or collapse a Gmail thread
Wat is Gmail 'Expand all' keyboard shortcut?
Gmail 'Expand all' keyboard shortcut is een Chrome-extensie ontwikkeld door [email protected], en de belangrijkste functie is "Press Alt+A to expand or collapse a Gmail thread".
Extensie Screenshots
Download het CRX-bestand van de extensie Gmail 'Expand all' keyboard shortcut
Download Gmail 'Expand all' keyboard shortcut-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/).
Basisinformatie over de Extensie
Naam | Gmail 'Expand all' keyboard shortcut |
ID | ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
Officiële URL | https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
Beschrijving | Press Alt+A to expand or collapse a Gmail thread |
Bestandsgrootte | 8.66 KB |
Aantal Installaties | 1,803 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2014-09-07 |
Publicatiedatum | 2014-09-07 |
Beoordeling | 4.27/5 Totaal 11 Beoordelingen |
Ontwikkelaar | [email protected] |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |