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.”。
擴展截圖
下載Timestamp Converter擴展crx文件
下載Timestamp Converter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | ndbibeklaoahhlfhdlkddlbnicnhmcad |
| 官方網址 | 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"
]
}
]
} | |