Epoch Converter

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

Vad är Epoch Converter?

Epoch Converter är en Chrome-tillägg utvecklad av drautb, och dess huvudfunktion är "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Epoch Converter-förlängningens CRX-fil

Ladda ner Epoch Converter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
Officiell webbadress https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Beskrivning Provides a popup showing a human readable date of a highlighted Unix timestamp.
Filstorlek 50.43 KB
Antal Installationer 1,753
Aktuell Version 1.1.2
Senast Uppdaterad 2023-05-19
Publiceringsdatum 2013-07-17
Betyg 3.33/5 Totalt 21 Betyg
Utvecklare drautb
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/drautb/epoch-converter/issues
Stödda Språk 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
        }
    ]
}