Epoch Converter

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

Epoch Converter là gì?

Epoch Converter là một tiện ích mở rộng Chrome được phát triển bởi Nga Pham, và tính năng chính của nó là "This extension converts a selected epoch number to GMT and local time".

Ả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 Epoch Converter

Tải xuống các tệp mở rộng Epoch 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 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.                    

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

Tên Epoch Converter Epoch Converter
ID fmlclipnfiabgkidijnabodchbmkodap
URL Chính Thức https://chrome.google.com/webstore/detail/epoch-converter/fmlclipnfiabgkidijnabodchbmkodap
Mô tả This extension converts a selected epoch number to GMT and local time
Kích Thước Tệp 3.6 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2014-10-16
Ngày Phát Hành 2014-10-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Nga Pham
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}