Timestamp Converter

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

什么是Timestamp Converter?

Timestamp Converter是由https://www.sahildua.com开发的Chrome扩展程序,该扩展的主要功能是“This is the most minimal extension converts timestamp to human-readable date format.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Timestamp Converter扩展crx文件

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

扩展使用说明

                        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.                    

扩展基本信息

名称 Timestamp Converter Timestamp Converter
ID ndbibeklaoahhlfhdlkddlbnicnhmcad
官方URL https://chromewebstore.google.com/detail/timestamp-converter/ndbibeklaoahhlfhdlkddlbnicnhmcad
简介 This is the most minimal extension converts timestamp to human-readable date format.
文件大小 65.02 KB
安装次数 177
当前版本 1.0.3
更新时间 2015-12-25
上架时间 2015-12-25
评分 5.00/5 共2次评分
开发者 https://www.sahildua.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://sahildua.com
帮助页面URL https://github.com/sahildua2305/chrome-time-conversion
支持的语言 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"
            ]
        }
    ]
}