Timestamp Converter

This is the most minimal extension converts timestamp to human-readable date format.

Timestamp Converterคืออะไร?

Timestamp Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.sahildua.com และคุณลักษณะหลักของมันคือ "This is the most minimal extension converts timestamp to human-readable date format."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Timestamp Converter

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

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

                        Ever worked with UNIX timestamps? Ever struggled in reading or converting UNIX timestamps into readable data-time formats?
This extension comes to the rescue! Just enter any timestamp and the human-readable format is just a click away! No need to visit other websites specially for converting timestamps into date/time format. Now it's just a click away and that too in your own browser working window/tab only.                    

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

ชื่อ Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
คำอธิบาย This is the most minimal extension converts timestamp to human-readable date format.
ขนาดไฟล์ 65.02 KB
จำนวนการติดตั้ง 177
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2015-12-25
วันที่เผยแพร่ 2015-12-25
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://www.sahildua.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://sahildua.com
URL หน้าช่วยเหลือ https://github.com/sahildua2305/chrome-time-conversion
ภาษาที่รองรับ en
manifest.json
{
    "manifest_version": 2,
    "name": "Timestamp Converter",
    "description": "This is the most minimal extension converts timestamp to human-readable date format.",
    "version": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icon-16.png",
        "default_popup": "main.html",
        "default_title": "Convert a timestamp"
    },
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/wwww.google.com\/*"
            ],
            "js": [
                "assets\/script.js"
            ]
        }
    ]
}