Epoch Converter

Provides a popup showing a human readable date of a highlighted Unix timestamp.

什么是Epoch Converter?

Epoch Converter是由drautb开发的Chrome扩展程序,该扩展的主要功能是“Provides a popup showing a human readable date of a highlighted Unix timestamp.”。

扩展截图

screenshot
screenshot

下载Epoch Converter扩展crx文件

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

扩展使用说明

                        This extension converts Unix timestamps to human readable date and time strings. Simply double click or highlight a timestamp in your browser window, and a small popup will appear containing a readable date and time. 

This extension is open source. Check it out on GitHub: http://github.com/drautb/epoch-converter                    

扩展基本信息

名称 Epoch Converter Epoch Converter
ID plfbhieilacgkdnphcdehdnhjenmnima
官方URL https://chromewebstore.google.com/detail/epoch-converter/plfbhieilacgkdnphcdehdnhjenmnima
简介 Provides a popup showing a human readable date of a highlighted Unix timestamp.
文件大小 50.43 KB
安装次数 1,753
当前版本 1.1.2
更新时间 2023-05-19
上架时间 2013-07-17
评分 3.33/5 共21次评分
开发者 drautb
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/drautb/epoch-converter/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Epoch Converter",
    "description": "Provides a popup showing a human readable date of a highlighted Unix timestamp.",
    "version": "1.1.2",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "bubble.css"
            ],
            "js": [
                "jquery.min.js",
                "selection.js"
            ],
            "all_frames": true
        }
    ]
}