Timestamp Converter

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

Co je Timestamp Converter?

Timestamp Converter je rozšíření Chrome vyvinuté https://www.sahildua.com, a jeho hlavní funkcí je „This is the most minimal extension converts timestamp to human-readable date format.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Timestamp Converter

Stáhněte si soubory rozšíření Timestamp Converter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
Oficiální URL https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Popis This is the most minimal extension converts timestamp to human-readable date format.
Velikost souboru 65.02 KB
Počet instalací 177
Aktuální Verze 1.0.3
Poslední Aktualizace 2015-12-25
Datum Vydání 2015-12-25
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář https://www.sahildua.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://sahildua.com
URL Stránky Nápovědy https://github.com/sahildua2305/chrome-time-conversion
Podporované Jazyky 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"
            ]
        }
    ]
}