Gmail Conversation Reversal
Reverse the display of emails in Gmail threads, show the latest email at top.
Qu'est-ce que Gmail Conversation Reversal ?
Gmail Conversation Reversal est une extension Chrome développée par https://bart.solutions, et sa fonction principale est "Reverse the display of emails in Gmail threads, show the latest email at top.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gmail Conversation Reversal
Téléchargez les fichiers d'extension Gmail Conversation Reversal 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
By default, email threads in Gmail conversations shows the oldest email first, this extension simply reverses that. Inspired by extension of 'Gmail reverse conversation', we just fixed some issues and make it more reliable. Source code: https://github.com/bartsolutions/gmail-conversation-reversal - Updated 2023-09-21: Fixed issues related to Gmail UI change
Informations de Base sur l'Extension
Nom | Gmail Conversation Reversal |
ID | iiapkjmnejmiokfbngfhdlijmcacphbe |
URL Officiel | https://chromewebstore.google.com/detail/gmail-conversation-revers/iiapkjmnejmiokfbngfhdlijmcacphbe |
Description | Reverse the display of emails in Gmail threads, show the latest email at top. |
Taille du Fichier | 54.71 KB |
Nombre d'Installations | 13,403 |
Version Actuelle | 0.1.6 |
Dernière Mise à Jour | 2023-09-21 |
Date de Publication | 2021-04-08 |
Évaluation | 4.10/5 Total 21 Évaluations |
Développeur | https://bart.solutions |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://bart.solutions/gmail-conversation-reversal/ |
URL de la Page d'Aide | https://bart.solutions/#ContactUs |
URL de la Page de Politique de Confidentialité | https://bart.solutions/simple-gmail-notes-privacy-policy |
Langues Prises en Charge | id,ms,de,en,fil,fr,sw,nl,no,vi,tr,ca,da,et,es,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Conversation Reversal", "short_name": "SGCReversal", "description": "__MSG_extDescription__", "version": "0.1.6", "default_locale": "en", "icons": { "16": "image\/icon.16.png", "48": "image\/icon.48.png", "128": "image\/icon.128.png" }, "permissions": [], "web_accessible_resources": [], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "css\/style.css" ], "run_at": "document_end" } ], "browser_action": { "default_icon": "image\/icon.128.png" }, "browser_specific_settings": { "gecko": { "id": "@simple-gmail-conversation-reversal", "strict_min_version": "55.0" } } } |