Gmail Conversation Reversal

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

Gmail Conversation Reversal क्या है?

Gmail Conversation Reversal https://bart.solutions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reverse the display of emails in Gmail threads, show the latest email at top."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gmail Conversation Reversal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
        }
    }
}