Epoch/Unix Timestamp Converter
This extension provides a quick way to see Epoch/Unix timestamps in a readable format.
Apa itu Epoch/Unix Timestamp Converter?
Epoch/Unix Timestamp Converter adalah ekstensi Chrome yang dikembangkan oleh Joel Henke, dan fitur utamanya adalah "This extension provides a quick way to see Epoch/Unix timestamps in a readable format.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Epoch/Unix Timestamp Converter
Unduh file ekstensi Epoch/Unix Timestamp Converter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
A tooltip will appear when you highlight an epoch timestamp to display a readable format. Informasi Dasar Ekstensi
| Nama | |
| ID | ccmimkellmbnnemahggeenpdefmldbfk |
| URL Resmi | https://chromewebstore.google.com/detail/epochunix-timestamp-conve/ccmimkellmbnnemahggeenpdefmldbfk |
| Deskripsi | This extension provides a quick way to see Epoch/Unix timestamps in a readable format. |
| Ukuran File | 10.02 KB |
| Jumlah Instalasi | 132 |
| Versi Saat Ini | 1.0 |
| Terakhir Diperbarui | 2020-02-19 |
| Tanggal Publikasi | 2020-02-19 |
| Penilaian | 5.00/5 Total 1 Penilaian |
| Pengembang | Joel Henke |
| [email protected] | |
| Tipe Pembayaran | free |
| Bahasa yang Didukung | 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"
}
} | |