Epoch Converter

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

Cos'è Epoch Converter?

Epoch Converter è un'estensione di Chrome sviluppata da drautb, e la sua funzione principale è "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Epoch Converter

Scarica i file di estensione Epoch Converter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
URL Ufficiale https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Descrizione Provides a popup showing a human readable date of a highlighted Unix timestamp.
Dimensione del File 50.43 KB
Conteggio Installazioni 1,753
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-05-19
Data di Pubblicazione 2013-07-17
Valutazione 3.33/5 Totale 21 Valutazioni
Sviluppatore drautb
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/drautb/epoch-converter/issues
Lingue Supportate 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
        }
    ]
}