Unix timestamp to readable date/time

Convert Unix timestamps on Web-page to readable date/time

Unix timestamp to readable date/timeとは何ですか?

Unix timestamp to readable date/timeはAlexey Michurinによって開発されたChromeの拡張機能で、その主な機能は「Convert Unix timestamps on Web-page to readable date/time」です。

拡張機能のスクリーンショット

screenshot

Unix timestamp to readable date/time拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        If you are sometimes forced to read UNIX timestamps in Web UI, you must know how it painful.

This small extension provides two ways to make your life easier.

• Push the extension button and all timestamps will be equipped with popups with readable time. Please visit the extension options page (right click on buttom). Here you can tune many options: colors, support of milli-, micro- and nanosecond, and other.

• If you push extension button on newtab page, you'll get a simple converter page.

Be careful with interactive pages. If page changes itself, like many of modern pages do, all readable timestamps will dissapear. This extension doesn't monitor pages permanently. It acts on demand only.                    

拡張機能の基本情報

名前 Unix timestamp to readable date/time Unix timestamp to readable date/time
ID cngfpffdiefnoblplbcdejppdpceaehm
公式URL https://chromewebstore.google.com/detail/unix-timestamp-to-readabl/cngfpffdiefnoblplbcdejppdpceaehm
説明 Convert Unix timestamps on Web-page to readable date/time
ファイルサイズ 33.57 KB
インストール数 694
現在のバージョン 0.0.2.2
最終更新日 2020-01-05
公開日 2020-01-05
評価 5.00/5 合計 5 レビュー
開発者 Alexey Michurin
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/michurin/chrome-extension-timestamp-to-readable
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unix timestamp to readable date\/time",
    "version": "0.0.2.2",
    "minimum_chrome_version": "49",
    "description": "Convert Unix timestamps on Web-page to readable date\/time",
    "short_name": "timestamp\u2192datetime",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "offline_enabled": true,
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "common.js",
            "bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "icon-128.png",
            "38": "icon-128.png"
        },
        "default_title": "timestamp \u21d2 datetime"
    },
    "homepage_url": "https:\/\/github.com\/michurin\/chrome-extension-timestamp-to-readable",
    "author": "Alexey Michurin ",
    "manifest_version": 2
}