Timestamp Converter

This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.

Hvad er Timestamp Converter?

Timestamp Converter er en Chrome-udvidelse udviklet af prajwalrao, og dens hovedfunktion er "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".

Udvidelsesskærmbilleder

screenshot

Download Timestamp Converter-udvidelses-CRX-fil

Download Timestamp 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 will help you convert Epoch Timestamp into Human Readable Time on highlight. Just select any epoch timestamp and it should show you the human readable time in the tooltip.                    

Grundlæggende oplysninger om udvidelsen

Navn Timestamp Converter Timestamp Converter
ID gkgflbiifhpciaafdhpafnejkpiffakp
Officiel URL https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp
Beskrivelse This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
Filstørrelse 80.05 KB
Antal Installationer 162
Nuværende Version 1.2
Senest Opdateret 2016-04-20
Udgivelsesdato 2016-04-19
Bedømmelse 4.00/5 Samlet 2 Bedømmelser
Udvikler prajwalrao
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/prajwalrao/ts-converter
Hjælpeside-URL https://github.com/prajwalrao/ts-converter/issues
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Prajwal Rao",
    "name": "Timestamp Converter",
    "description": "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.",
    "version": "1.2",
    "icons": {
        "128": "icons\/icon_128x128.png",
        "16": "icons\/icon_16x16.png",
        "32": "icons\/icon_32x32.png",
        "48": "icons\/icon_48x48.png",
        "512": "icons\/icon_512x512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "ts-conv.css"
            ],
            "js": [
                "ts-conv.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}