Epoch Converter

This extension converts a selected epoch number to GMT and local time

What is Epoch Converter?

Epoch Converter is a Chrome extension developed by Nga Pham, and its main feature is "This extension converts a selected epoch number to GMT and local time".

Extension Screenshots

screenshot

Download Epoch Converter Extension CRX File

Download Epoch 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 converts a selected epoch number to GMT and local time.

Simply select the epoch text, and press "Ctrl" key on your keyboard to see the readable datetime in GMT and your local timezone.                    

Extension Basic Information

Name Epoch Converter Epoch Converter
ID fmlclipnfiabgkidijnabodchbmkodap
Official URL https://chrome.google.com/webstore/detail/epoch-converter/fmlclipnfiabgkidijnabodchbmkodap
Description This extension converts a selected epoch number to GMT and local time
File Size 3.6 KB
Installation Count 25
Current Version 1.1
Last Updated 2014-10-16
Publish Date 2014-10-16
Rating 5.00/5 Total 1 Ratings
Developer Nga Pham
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Epoch Converter",
    "version": "1.1",
    "manifest_version": 2,
    "description": "This extension converts a selected epoch number to GMT and local time",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lookup.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs"
    ]
}