Timestamp Converter

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

什么是Timestamp Converter?

Timestamp Converter是由prajwalrao开发的Chrome扩展程序,该扩展的主要功能是“This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.”。

扩展截图

screenshot

下载Timestamp Converter扩展crx文件

下载Timestamp Converter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Timestamp Converter Timestamp Converter
ID gkgflbiifhpciaafdhpafnejkpiffakp
官方URL https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp
简介 This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
文件大小 80.05 KB
安装次数 162
当前版本 1.2
更新时间 2016-04-20
上架时间 2016-04-19
评分 4.00/5 共2次评分
开发者 prajwalrao
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/prajwalrao/ts-converter
帮助页面URL https://github.com/prajwalrao/ts-converter/issues
支持的语言 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
        }
    ]
}