Gmail Conversation Reversal

Reverse the display of emails in Gmail threads, show the latest email at top.

Cos'è Gmail Conversation Reversal?

Gmail Conversation Reversal è un'estensione di Chrome sviluppata da https://bart.solutions, e la sua funzione principale è "Reverse the display of emails in Gmail threads, show the latest email at top.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Gmail Conversation Reversal

Scarica i file di estensione Gmail Conversation Reversal in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Gmail Conversation Reversal Gmail Conversation Reversal
ID iiapkjmnejmiokfbngfhdlijmcacphbe
URL Ufficiale https://chromewebstore.google.com/detail/gmail-conversation-revers/iiapkjmnejmiokfbngfhdlijmcacphbe
Descrizione Reverse the display of emails in Gmail threads, show the latest email at top.
Dimensione del File 54.71 KB
Conteggio Installazioni 13,403
Versione Corrente 0.1.6
Ultimo Aggiornamento 2023-09-21
Data di Pubblicazione 2021-04-08
Valutazione 4.10/5 Totale 21 Valutazioni
Sviluppatore https://bart.solutions
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://bart.solutions/gmail-conversation-reversal/
URL della Pagina di Aiuto https://bart.solutions/#ContactUs
URL della Pagina della Politica sulla Privacy https://bart.solutions/simple-gmail-notes-privacy-policy
Lingue Supportate 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"
        }
    }
}