Timestamp Converter

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

Was ist Timestamp Converter?

Timestamp Converter ist eine Chrome-Erweiterung, die von https://www.sahildua.com entwickelt wurde, und ihr Hauptmerkmal ist "This is the most minimal extension converts timestamp to human-readable date format.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Timestamp Converter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Timestamp Converter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
Offizielle URL https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Beschreibung This is the most minimal extension converts timestamp to human-readable date format.
Dateigröße 65.02 KB
Installationsanzahl 177
Aktuelle Version 1.0.3
Letztes Update 2015-12-25
Veröffentlichungsdatum 2015-12-25
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://www.sahildua.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://sahildua.com
Hilfeseite URL https://github.com/sahildua2305/chrome-time-conversion
Unterstützte Sprachen 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"
            ]
        }
    ]
}