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.”。
擴展截圖
下載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 |
ID | iiapkjmnejmiokfbngfhdlijmcacphbe |
官方網址 | 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" } } } |