Gmail 'Expand all' keyboard shortcut
Press Alt+A to expand or collapse a Gmail thread
Qu'est-ce que Gmail 'Expand all' keyboard shortcut ?
Gmail 'Expand all' keyboard shortcut est une extension Chrome développée par [email protected], et sa fonction principale est "Press Alt+A to expand or collapse a Gmail thread".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gmail 'Expand all' keyboard shortcut
Téléchargez les fichiers d'extension Gmail 'Expand all' keyboard shortcut au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/).
Informations de Base sur l'Extension
Nom | Gmail 'Expand all' keyboard shortcut |
ID | ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
URL Officiel | https://chromewebstore.google.com/detail/gmail-expand-all-keyboard/ciocgdpejlhegbegfjlfhjgjgbfcjkgb |
Description | Press Alt+A to expand or collapse a Gmail thread |
Taille du Fichier | 8.66 KB |
Nombre d'Installations | 1,803 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2014-09-07 |
Date de Publication | 2014-09-07 |
Évaluation | 4.27/5 Total 11 Évaluations |
Développeur | [email protected] |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |