Epoch Converter

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

Hvad er Epoch Converter?

Epoch Converter er en Chrome-udvidelse udviklet af drautb, og dens hovedfunktion er "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Epoch Converter-udvidelses-CRX-fil

Download Epoch Converter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
Officiel URL https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Beskrivelse Provides a popup showing a human readable date of a highlighted Unix timestamp.
Filstørrelse 50.43 KB
Antal Installationer 1,753
Nuværende Version 1.1.2
Senest Opdateret 2023-05-19
Udgivelsesdato 2013-07-17
Bedømmelse 3.33/5 Samlet 21 Bedømmelser
Udvikler drautb
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://github.com/drautb/epoch-converter/issues
Understøttede Sprog 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
        }
    ]
}