Gmail Show Time

Shows full date/time in email listing and detail headers. Support custom date/time format.

Gmail Show Timeคืออะไร?

Gmail Show Time เป็นส่วนขยายของ Chrome ที่พัฒนาโดย CleverInsert และคุณลักษณะหลักของมันคือ "Shows full date/time in email listing and detail headers. Support custom date/time format."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gmail Show Time

ดาวน์โหลดไฟล์ส่วนขยาย Gmail Show Time ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Gmail shows the date of an email in the last column of your email overview. Depending on how old the email is, the display format changes.

In all cases, I wanted to see the time of the emails. This extension does exactly that.

The latest major version 3 now supports custom date/time formatting options.


By installing and using Gmail Show Time, you agree to the Privacy Policy at https://cleverinsert.com/privacy_policy_cws.txt


Changelog

Version 3.7.1
2022-07-19
Removed Bing until further notice
Seems you lose all control over search engines

Version 3.7.0
2022-07-19
Added Bing as default search engine to help support the project
The change is optional and can be reversed if needed

Version 3.6.3
2021-12-23
Japanese month bug fix

Version 3.6.2
2021-11-07
Added formatting options

Version 3.6.0
2021-08-16
Upgrade to Manifest V3
Bugfix US AM/PM

Version 3.5.2
2021-03-30
Redirect to options on install - now the proper way

Version 3.5.1
2021-03-29
Redirect to options on install

Version 3.5.0
2021-03-27
Added support options

Version 3.4.0
2021-01-14
Stripped the store

Version 3.3.12
2020-08-17
Fixed parser for Japanese

Version 3.3.11
2019-11-08
Noon AM/PM bugfix

Version 3.3.10
2019-05-17
Another layout fix for preview pane

Version 3.3.9
2018-09-13
New layout fix; flickering issue when preview pane is enabled

Version 3.3.8
2018-09-10
Added support for week numbers

Version 3.3.7
2018-08-23
Added Privacy Policy
Several tiny bug fixes

Version 3.3.6
2018-08-06
Date parse fix for AM/PM

Version 3.3.4
2018-07-11
Preloading i18l branch
Reintroduction of enabled/disabled icon state
Possible fix for annoying update notification
Icon-style synchronised with Groups Show Time

Version 3.2.4
2018-05-18
Added support for month names %b, %B

Version 3.2.3
2018-04-18
UI fix                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gmail Show Time Gmail Show Time
ID jgjaapljoafhkohbnfigoekjgdfddnnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-show-time/jgjaapljoafhkohbnfigoekjgdfddnnn
คำอธิบาย Shows full date/time in email listing and detail headers. Support custom date/time format.
ขนาดไฟล์ 27.28 KB
จำนวนการติดตั้ง 60,624
เวอร์ชันปัจจุบัน 3.7.1
อัปเดตครั้งล่าสุด 2022-07-19
วันที่เผยแพร่ 2019-11-08
คะแนน 3.80/5 รวมทั้งหมด 64 คะแนน
ผู้พัฒนา CleverInsert
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://cleverinsert.com/privacy_policy_cws.txt
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "3.7.1",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "run_at": "document_idle",
            "all_frames": false,
            "js": [
                "mutation-summary.min.js",
                "main.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "event.js"
    },
    "permissions": [
        "storage"
    ]
}