Timestamp Converter

This is the most minimal extension converts timestamp to human-readable date format.

Vad är Timestamp Converter?

Timestamp Converter är en Chrome-tillägg utvecklad av https://www.sahildua.com, och dess huvudfunktion är "This is the most minimal extension converts timestamp to human-readable date format.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

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

Ladda ner 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

                        Ever worked with UNIX timestamps? Ever struggled in reading or converting UNIX timestamps into readable data-time formats?
This extension comes to the rescue! Just enter any timestamp and the human-readable format is just a click away! No need to visit other websites specially for converting timestamps into date/time format. Now it's just a click away and that too in your own browser working window/tab only.                    

Grundläggande Information om Tillägg

Namn Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
Officiell webbadress https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Beskrivning This is the most minimal extension converts timestamp to human-readable date format.
Filstorlek 65.02 KB
Antal Installationer 177
Aktuell Version 1.0.3
Senast Uppdaterad 2015-12-25
Publiceringsdatum 2015-12-25
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://www.sahildua.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://sahildua.com
Hjälpsida URL https://github.com/sahildua2305/chrome-time-conversion
Stödda Språk en
manifest.json
{
    "manifest_version": 2,
    "name": "Timestamp Converter",
    "description": "This is the most minimal extension converts timestamp to human-readable date format.",
    "version": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icon-16.png",
        "default_popup": "main.html",
        "default_title": "Convert a timestamp"
    },
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/wwww.google.com\/*"
            ],
            "js": [
                "assets\/script.js"
            ]
        }
    ]
}