Epoch Converter

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

Wat is Epoch Converter?

Epoch Converter is een Chrome-extensie ontwikkeld door drautb, en de belangrijkste functie is "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Epoch Converter

Download Epoch Converter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
Officiële URL https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Beschrijving Provides a popup showing a human readable date of a highlighted Unix timestamp.
Bestandsgrootte 50.43 KB
Aantal Installaties 1,753
Huidige Versie 1.1.2
Laatst Bijgewerkt 2023-05-19
Publicatiedatum 2013-07-17
Beoordeling 3.33/5 Totaal 21 Beoordelingen
Ontwikkelaar drautb
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/drautb/epoch-converter/issues
Ondersteunde Talen 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
        }
    ]
}