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

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

확장 프로그램 사용 설명서

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