Epoch/Unix Timestamp Converter
This extension provides a quick way to see Epoch/Unix timestamps in a readable format.
Cos'è Epoch/Unix Timestamp Converter?
Epoch/Unix Timestamp Converter è un'estensione di Chrome sviluppata da Joel Henke, e la sua funzione principale è "This extension provides a quick way to see Epoch/Unix timestamps in a readable format.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Epoch/Unix Timestamp Converter
Scarica i file di estensione Epoch/Unix 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
A tooltip will appear when you highlight an epoch timestamp to display a readable format.
Informazioni di Base sull'Estensione
Nome | Epoch/Unix Timestamp Converter |
ID | ccmimkellmbnnemahggeenpdefmldbfk |
URL Ufficiale | https://chromewebstore.google.com/detail/epochunix-timestamp-conve/ccmimkellmbnnemahggeenpdefmldbfk |
Descrizione | This extension provides a quick way to see Epoch/Unix timestamps in a readable format. |
Dimensione del File | 10.02 KB |
Conteggio Installazioni | 132 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2020-02-19 |
Data di Pubblicazione | 2020-02-19 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Joel Henke |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Epoch\/Unix Timestamp Converter", "version": "1.0", "description": "This extension provides a quick way to see Epoch\/Unix timestamps in a readable format.", "author": "Joel Henke", "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |