Epoch Converter

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

Qu'est-ce que Epoch Converter ?

Epoch Converter est une extension Chrome développée par drautb, et sa fonction principale est "Provides a popup showing a human readable date of a highlighted Unix timestamp.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Epoch Converter

Téléchargez les fichiers d'extension Epoch Converter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
URL Officiel https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
Description Provides a popup showing a human readable date of a highlighted Unix timestamp.
Taille du Fichier 50.43 KB
Nombre d'Installations 1,753
Version Actuelle 1.1.2
Dernière Mise à Jour 2023-05-19
Date de Publication 2013-07-17
Évaluation 3.33/5 Total 21 Évaluations
Développeur drautb
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://github.com/drautb/epoch-converter/issues
Langues Prises en Charge 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
        }
    ]
}