Timestamp Converter

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

Co to jest Timestamp Converter?

Timestamp Converter to rozszerzenie Chrome opracowane przez https://www.sahildua.com, a jego główną funkcją jest „This is the most minimal extension converts timestamp to human-readable date format.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Timestamp Converter

Pobierz pliki rozszerzeń Timestamp Converter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
Oficjalny URL https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Opis This is the most minimal extension converts timestamp to human-readable date format.
Rozmiar pliku 65.02 KB
Liczba instalacji 177
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2015-12-25
Data Publikacji 2015-12-25
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://www.sahildua.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://sahildua.com
Adres URL Strony Pomocy https://github.com/sahildua2305/chrome-time-conversion
Obsługiwane Języki 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"
            ]
        }
    ]
}