Timestamp Converter

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

What is Timestamp Converter?

Timestamp Converter is a Chrome extension developed by prajwalrao, and its main feature is "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".

Extension Screenshots

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

                        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.                    

Extension Basic Information

Name Timestamp Converter Timestamp Converter
ID gkgflbiifhpciaafdhpafnejkpiffakp
Official URL https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp
Description This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
File Size 80.05 KB
Installation Count 162
Current Version 1.2
Last Updated 2016-04-20
Publish Date 2016-04-19
Rating 4.00/5 Total 2 Ratings
Developer prajwalrao
Email [email protected]
Payment Type free
Extension Website https://github.com/prajwalrao/ts-converter
Help Page URL https://github.com/prajwalrao/ts-converter/issues
Supported Languages 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
        }
    ]
}