Gmail Date Time Formatter

Set the format of the date and time for mails in your inbox as you want

Gmail Date Time Formatterคืออะไร?

Gmail Date Time Formatter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://doyunkim.com และคุณลักษณะหลักของมันคือ "Set the format of the date and time for mails in your inbox as you want"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Gmail Date Time Formatter
You can see the date and time in Inbox the way you want.

### Update: Unnecessary permission request (tabs) is removed (ver. 1.21) ###
### Now you can use this with different locale! (ver. 1.20) ###
### Now you can use this with the new version of Inbox! (ver. 1.12)###

This extension support custom format so you can change the date and time as you want.
This extension supports custom format. The format follows moment.js format. (https://momentjs.com/docs/)
In the option page, you set the format string, for example, YYYY-MM-DD. Then, the date/time column of gmail list is shown in the form.                    

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

ชื่อ Gmail Date Time Formatter Gmail Date Time Formatter
ID nkmaeogddfijadboccpafnmhkjhidgeb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gmail-date-time-formatter/nkmaeogddfijadboccpafnmhkjhidgeb
คำอธิบาย Set the format of the date and time for mails in your inbox as you want
ขนาดไฟล์ 971 KB
จำนวนการติดตั้ง 2,204
เวอร์ชันปัจจุบัน 1.21
อัปเดตครั้งล่าสุด 2022-02-05
วันที่เผยแพร่ 2018-09-20
คะแนน 3.79/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา https://doyunkim.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail Date Time Formatter",
    "description": "Set the format of the date and time for mails in your inbox as you want",
    "version": "1.21",
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "128": "icon128.png",
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png"
        }
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "options_page": "options.html",
    "short_name": "Gmail Date Time Formatter",
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/mutation-summary.min.js",
                "js\/moment-with-locales.js",
                "js\/myscripts.js"
            ],
            "run_at": "document_idle"
        }
    ]
}