Epoch/Unix Timestamp Converter

This extension provides a quick way to see Epoch/Unix timestamps in a readable format.

Co to jest Epoch/Unix Timestamp Converter?

Epoch/Unix Timestamp Converter to rozszerzenie Chrome opracowane przez Joel Henke, a jego główną funkcją jest „This extension provides a quick way to see Epoch/Unix timestamps in a readable format.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Epoch/Unix Timestamp Converter

Pobierz pliki rozszerzeń Epoch/Unix 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

                        A tooltip will appear when you highlight an epoch timestamp to display a readable format.                    

Podstawowe informacje o rozszerzeniu

Nazwa Epoch/Unix Timestamp Converter Epoch/Unix Timestamp Converter
ID ccmimkellmbnnemahggeenpdefmldbfk
Oficjalny URL https://chromewebstore.google.com/detail/epochunix-timestamp-conve/ccmimkellmbnnemahggeenpdefmldbfk
Opis This extension provides a quick way to see Epoch/Unix timestamps in a readable format.
Rozmiar pliku 10.02 KB
Liczba instalacji 132
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-02-19
Data Publikacji 2020-02-19
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Joel Henke
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Epoch\/Unix Timestamp Converter",
    "version": "1.0",
    "description": "This extension provides a quick way to see Epoch\/Unix timestamps in a readable format.",
    "author": "Joel Henke",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}