Timestamp Converter
This is the most minimal extension converts timestamp to human-readable date format.
¿Qué es Timestamp Converter?
Timestamp Converter es una extensión de Chrome desarrollada por https://www.sahildua.com, y su función principal es "This is the most minimal extension converts timestamp to human-readable date format.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Timestamp Converter
Descarga archivos de extensión Timestamp Converter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Timestamp Converter |
ID | ndbibeklaoahhlfhdlkddlbnicnhmcad |
URL Oficial | https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad |
Descripción | This is the most minimal extension converts timestamp to human-readable date format. |
Tamaño del Archivo | 65.02 KB |
Cantidad de Instalaciones | 177 |
Versión Actual | 1.0.3 |
Última Actualización | 2015-12-25 |
Fecha de Publicación | 2015-12-25 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | https://www.sahildua.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | http://sahildua.com |
URL de la Página de Ayuda | https://github.com/sahildua2305/chrome-time-conversion |
Idiomas Soportados | 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" ] } ] } |