Epoch Converter

Provides a popup showing a human readable date of a highlighted Unix timestamp.

Co to jest Epoch Converter?

Epoch Converter to rozszerzenie Chrome opracowane przez drautb, a jego główną funkcją jest „Provides a popup showing a human readable date of a highlighted Unix timestamp.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Epoch Converter

Pobierz pliki rozszerzeń Epoch 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 converts Unix timestamps to human readable date and time strings. Simply double click or highlight a timestamp in your browser window, and a small popup will appear containing a readable date and time. 

This extension is open source. Check it out on GitHub: http://github.com/drautb/epoch-converter                    

Podstawowe informacje o rozszerzeniu

Nazwa Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
Oficjalny URL https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Opis Provides a popup showing a human readable date of a highlighted Unix timestamp.
Rozmiar pliku 50.43 KB
Liczba instalacji 1,753
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2023-05-19
Data Publikacji 2013-07-17
Ocena 3.33/5 Łącznie 21 Oceny
Deweloper drautb
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/drautb/epoch-converter/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Epoch Converter",
    "description": "Provides a popup showing a human readable date of a highlighted Unix timestamp.",
    "version": "1.1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "bubble.css"
            ],
            "js": [
                "jquery.min.js",
                "selection.js"
            ],
            "all_frames": true
        }
    ]
}