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によって開発されたChromeの拡張機能で、その主な機能は「Reverse the display of emails in Gmail threads, show the latest email at top.」です。

拡張機能のスクリーンショット

screenshot

Gmail Conversation Reversal拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
        }
    }
}