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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    }
}