Timestamp Converter

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

Timestamp Converter là gì?

Timestamp Converter là một tiện ích mở rộng Chrome được phát triển bởi prajwalrao, và tính năng chính của nó là "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Timestamp Converter

Tải xuống các tệp mở rộng Timestamp Converter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Timestamp Converter Timestamp Converter
ID gkgflbiifhpciaafdhpafnejkpiffakp
URL Chính Thức https://chromewebstore.google.com/detail/timestamp-converter/gkgflbiifhpciaafdhpafnejkpiffakp
Mô tả This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.
Kích Thước Tệp 80.05 KB
Số Lần Cài Đặt 162
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2016-04-20
Ngày Phát Hành 2016-04-19
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển prajwalrao
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/prajwalrao/ts-converter
URL Trang Trợ Giúp https://github.com/prajwalrao/ts-converter/issues
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}