Gmail Conversation Reversal
Reverse the display of emails in Gmail threads, show the latest email at top.
Τι είναι το Gmail Conversation Reversal;
Το Gmail Conversation Reversal είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://bart.solutions, και η κύρια λειτουργία του είναι "Reverse the display of emails in Gmail threads, show the latest email at top.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gmail Conversation Reversal
Λήψη αρχείων επέκτασης Gmail Conversation Reversal σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gmail Conversation Reversal |
ID | iiapkjmnejmiokfbngfhdlijmcacphbe |
Επίσημο URL | https://chromewebstore.google.com/detail/gmail-conversation-revers/iiapkjmnejmiokfbngfhdlijmcacphbe |
Περιγραφή | Reverse the display of emails in Gmail threads, show the latest email at top. |
Μέγεθος Αρχείου | 54.71 KB |
Αριθμός Εγκαταστάσεων | 13,403 |
Τρέχουσα Έκδοση | 0.1.6 |
Τελευταία Ενημέρωση | 2023-09-21 |
Ημερομηνία Δημοσίευσης | 2021-04-08 |
Αξιολόγηση | 4.10/5 Συνολικά 21 Αξιολογήσεις |
Προγραμματιστής | https://bart.solutions |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://bart.solutions/gmail-conversation-reversal/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://bart.solutions/#ContactUs |
URL της Σελίδας Πολιτικής Απορρήτου | https://bart.solutions/simple-gmail-notes-privacy-policy |
Υποστηριζόμενες Γλώσσες | 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" } } } |