Timestamp Converter
This is the most minimal extension converts timestamp to human-readable date format.
Cos'è Timestamp Converter?
Timestamp Converter è un'estensione di Chrome sviluppata da https://www.sahildua.com, e la sua funzione principale è "This is the most minimal extension converts timestamp to human-readable date format.".
Screenshot dell'Estensione
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
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.
Informazioni di Base sull'Estensione
Nome | Timestamp Converter |
ID | ndbibeklaoahhlfhdlkddlbnicnhmcad |
URL Ufficiale | https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad |
Descrizione | This is the most minimal extension converts timestamp to human-readable date format. |
Dimensione del File | 65.02 KB |
Conteggio Installazioni | 177 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2015-12-25 |
Data di Pubblicazione | 2015-12-25 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://www.sahildua.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://sahildua.com |
URL della Pagina di Aiuto | https://github.com/sahildua2305/chrome-time-conversion |
Lingue Supportate | 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" ] } ] } |