Epoch/Unix Timestamp Converter

This extension provides a quick way to see Epoch/Unix timestamps in a readable format.

Vad är Epoch/Unix Timestamp Converter?

Epoch/Unix Timestamp Converter är en Chrome-tillägg utvecklad av Joel Henke, och dess huvudfunktion är "This extension provides a quick way to see Epoch/Unix timestamps in a readable format.".

Tilläggsskärmbilder

screenshot

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

Ladda ner Epoch/Unix Timestamp 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

                        A tooltip will appear when you highlight an epoch timestamp to display a readable format.                    

Grundläggande Information om Tillägg

Namn Epoch/Unix Timestamp Converter Epoch/Unix Timestamp Converter
ID ccmimkellmbnnemahggeenpdefmldbfk
Officiell webbadress https://chromewebstore.google.com/detail/epochunix-timestamp-conve/ccmimkellmbnnemahggeenpdefmldbfk
Beskrivning This extension provides a quick way to see Epoch/Unix timestamps in a readable format.
Filstorlek 10.02 KB
Antal Installationer 132
Aktuell Version 1.0
Senast Uppdaterad 2020-02-19
Publiceringsdatum 2020-02-19
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Joel Henke
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Epoch\/Unix Timestamp Converter",
    "version": "1.0",
    "description": "This extension provides a quick way to see Epoch\/Unix timestamps in a readable format.",
    "author": "Joel Henke",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}