Epoch/Unix Timestamp Converter
This extension provides a quick way to see Epoch/Unix timestamps in a readable format.
Epoch/Unix Timestamp Converterคืออะไร?
Epoch/Unix Timestamp Converter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joel Henke และคุณลักษณะหลักของมันคือ "This extension provides a quick way to see Epoch/Unix timestamps in a readable format."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Epoch/Unix Timestamp Converter
ดาวน์โหลดไฟล์ส่วนขยาย Epoch/Unix Timestamp Converter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A tooltip will appear when you highlight an epoch timestamp to display a readable format. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | ccmimkellmbnnemahggeenpdefmldbfk |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/epochunix-timestamp-conve/ccmimkellmbnnemahggeenpdefmldbfk |
| คำอธิบาย | This extension provides a quick way to see Epoch/Unix timestamps in a readable format. |
| ขนาดไฟล์ | 10.02 KB |
| จำนวนการติดตั้ง | 132 |
| เวอร์ชันปัจจุบัน | 1.0 |
| อัปเดตครั้งล่าสุด | 2020-02-19 |
| วันที่เผยแพร่ | 2020-02-19 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | Joel Henke |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Epoch\/Unix Timestamp Converter",
"version": "1.0",
"description": "This extension provides a quick way to see Epoch\/Unix timestamps in a readable format.",
"author": "Joel Henke",
"permissions": [
"activeTab"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"icons": {
"48": "icon48.png",
"128": "icon128.png"
}
} | |