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ファイルをダウンロード

Timestamp Converter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
        }
    ]
}