Timestamp Converter

This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.

Co to jest Timestamp Converter?

Timestamp Converter to rozszerzenie Chrome opracowane przez prajwalrao, a jego główną funkcją jest „This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.”.

Zrzuty ekranu rozszerzenia

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

                        This extension will help you convert Epoch Timestamp into Human Readable Time on highlight. Just select any epoch timestamp and it should show you the human readable time in the tooltip.                    

Podstawowe informacje o rozszerzeniu

Nazwa Timestamp Converter Timestamp Converter
ID gkgflbiifhpciaafdhpafnejkpiffakp
Oficjalny URL https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp
Opis This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
Rozmiar pliku 80.05 KB
Liczba instalacji 162
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2016-04-20
Data Publikacji 2016-04-19
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper prajwalrao
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/prajwalrao/ts-converter
Adres URL Strony Pomocy https://github.com/prajwalrao/ts-converter/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Prajwal Rao",
    "name": "Timestamp Converter",
    "description": "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.",
    "version": "1.2",
    "icons": {
        "128": "icons\/icon_128x128.png",
        "16": "icons\/icon_16x16.png",
        "32": "icons\/icon_32x32.png",
        "48": "icons\/icon_48x48.png",
        "512": "icons\/icon_512x512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "ts-conv.css"
            ],
            "js": [
                "ts-conv.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}