Epoch Converter

Provides a popup showing a human readable date of a highlighted Unix timestamp.

Apa itu Epoch Converter?

Epoch Converter adalah ekstensi Chrome yang dikembangkan oleh drautb, dan fitur utamanya adalah "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Epoch Converter

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

                        This extension converts Unix timestamps to human readable date and time strings. Simply double click or highlight a timestamp in your browser window, and a small popup will appear containing a readable date and time. 

This extension is open source. Check it out on GitHub: http://github.com/drautb/epoch-converter                    

Informasi Dasar Ekstensi

Nama Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
URL Resmi https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Deskripsi Provides a popup showing a human readable date of a highlighted Unix timestamp.
Ukuran File 50.43 KB
Jumlah Instalasi 1,753
Versi Saat Ini 1.1.2
Terakhir Diperbarui 2023-05-19
Tanggal Publikasi 2013-07-17
Penilaian 3.33/5 Total 21 Penilaian
Pengembang drautb
Email [email protected]
Tipe Pembayaran free
URL Halaman Bantuan https://github.com/drautb/epoch-converter/issues
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Epoch Converter",
    "description": "Provides a popup showing a human readable date of a highlighted Unix timestamp.",
    "version": "1.1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "bubble.css"
            ],
            "js": [
                "jquery.min.js",
                "selection.js"
            ],
            "all_frames": true
        }
    ]
}