Timestamp Converter

This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.

Cos'è Timestamp Converter?

Timestamp Converter è un'estensione di Chrome sviluppata da prajwalrao, e la sua funzione principale è "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Timestamp Converter

Scarica i file di estensione Timestamp 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 will help you convert Epoch Timestamp into Human Readable Time on highlight. Just select any epoch timestamp and it should show you the human readable time in the tooltip.                    

Informazioni di Base sull'Estensione

Nome Timestamp Converter Timestamp Converter
ID gkgflbiifhpciaafdhpafnejkpiffakp
URL Ufficiale https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp
Descrizione This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
Dimensione del File 80.05 KB
Conteggio Installazioni 162
Versione Corrente 1.2
Ultimo Aggiornamento 2016-04-20
Data di Pubblicazione 2016-04-19
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore prajwalrao
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/prajwalrao/ts-converter
URL della Pagina di Aiuto https://github.com/prajwalrao/ts-converter/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Prajwal Rao",
    "name": "Timestamp Converter",
    "description": "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.",
    "version": "1.2",
    "icons": {
        "128": "icons\/icon_128x128.png",
        "16": "icons\/icon_16x16.png",
        "32": "icons\/icon_32x32.png",
        "48": "icons\/icon_48x48.png",
        "512": "icons\/icon_512x512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "ts-conv.css"
            ],
            "js": [
                "ts-conv.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}