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.”。
擴展截圖
下載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 |
ID | gkgflbiifhpciaafdhpafnejkpiffakp |
官方網址 | 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 } ] } |