Timestamp Converter
This is the most minimal extension converts timestamp to human-readable date format.
Wat is Timestamp Converter?
Timestamp Converter is een Chrome-extensie ontwikkeld door https://www.sahildua.com, en de belangrijkste functie is "This is the most minimal extension converts timestamp to human-readable date format.".
Extensie Screenshots
Download het CRX-bestand van de extensie Timestamp Converter
Download Timestamp Converter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Timestamp Converter |
ID | ndbibeklaoahhlfhdlkddlbnicnhmcad |
Officiële URL | https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad |
Beschrijving | This is the most minimal extension converts timestamp to human-readable date format. |
Bestandsgrootte | 65.02 KB |
Aantal Installaties | 177 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2015-12-25 |
Publicatiedatum | 2015-12-25 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://www.sahildua.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://sahildua.com |
Help Pagina-URL | https://github.com/sahildua2305/chrome-time-conversion |
Ondersteunde Talen | 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" ] } ] } |