Timestamp Converter

This is the most minimal extension converts timestamp to human-readable date format.

Qu'est-ce que Timestamp Converter ?

Timestamp Converter est une extension Chrome développée par https://www.sahildua.com, et sa fonction principale est "This is the most minimal extension converts timestamp to human-readable date format.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Timestamp Converter

Téléchargez les fichiers d'extension Timestamp Converter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
URL Officiel https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Description This is the most minimal extension converts timestamp to human-readable date format.
Taille du Fichier 65.02 KB
Nombre d'Installations 177
Version Actuelle 1.0.3
Dernière Mise à Jour 2015-12-25
Date de Publication 2015-12-25
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://www.sahildua.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://sahildua.com
URL de la Page d'Aide https://github.com/sahildua2305/chrome-time-conversion
Langues Prises en Charge 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"
            ]
        }
    ]
}