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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
        }
    ]
}