Timestamp Converter
This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
Timestamp Converterคืออะไร?
Timestamp Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย prajwalrao และคุณลักษณะหลักของมันคือ "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Timestamp Converter
ดาวน์โหลดไฟล์ส่วนขยาย Timestamp Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will help you convert Epoch Timestamp into Human Readable Time on highlight. Just select any epoch timestamp and it should show you the human readable time in the tooltip.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Timestamp Converter |
ID | gkgflbiifhpciaafdhpafnejkpiffakp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp |
คำอธิบาย | This extension will help you convert Epoch Timestamp into Human Readable Time on highlight. |
ขนาดไฟล์ | 80.05 KB |
จำนวนการติดตั้ง | 162 |
เวอร์ชันปัจจุบัน | 1.2 |
อัปเดตครั้งล่าสุด | 2016-04-20 |
วันที่เผยแพร่ | 2016-04-19 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | prajwalrao |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/prajwalrao/ts-converter |
URL หน้าช่วยเหลือ | https://github.com/prajwalrao/ts-converter/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Prajwal Rao", "name": "Timestamp Converter", "description": "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.", "version": "1.2", "icons": { "128": "icons\/icon_128x128.png", "16": "icons\/icon_16x16.png", "32": "icons\/icon_32x32.png", "48": "icons\/icon_48x48.png", "512": "icons\/icon_512x512.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "ts-conv.css" ], "js": [ "ts-conv.js" ], "run_at": "document_end", "all_frames": true } ] } |