Timestamp Converter

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

What is Timestamp Converter?

Timestamp Converter is a Chrome extension developed by https://www.sahildua.com, and its main feature is "This is the most minimal extension converts timestamp to human-readable date format.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Timestamp Converter Extension CRX File

Download Timestamp Converter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
Official URL https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
Description This is the most minimal extension converts timestamp to human-readable date format.
File Size 65.02 KB
Installation Count 177
Current Version 1.0.3
Last Updated 2015-12-25
Publish Date 2015-12-25
Rating 5.00/5 Total 2 Ratings
Developer https://www.sahildua.com
Email [email protected]
Payment Type free
Extension Website http://sahildua.com
Help Page URL https://github.com/sahildua2305/chrome-time-conversion
Supported Languages 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"
            ]
        }
    ]
}