Timestamp Converter

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

Apa itu Timestamp Converter?

Timestamp Converter adalah ekstensi Chrome yang dikembangkan oleh https://www.sahildua.com, dan fitur utamanya adalah "This is the most minimal extension converts timestamp to human-readable date format.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Timestamp Converter

Unduh file ekstensi 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

                        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.                    

Informasi Dasar Ekstensi

Nama Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
URL Resmi https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Deskripsi This is the most minimal extension converts timestamp to human-readable date format.
Ukuran File 65.02 KB
Jumlah Instalasi 177
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2015-12-25
Tanggal Publikasi 2015-12-25
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://www.sahildua.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://sahildua.com
URL Halaman Bantuan https://github.com/sahildua2305/chrome-time-conversion
Bahasa yang Didukung 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"
            ]
        }
    ]
}