Timestamp Converter
This is the most minimal extension converts timestamp to human-readable date format.
Что такое Timestamp Converter?
Timestamp Converter - это расширение Chrome, разработанное https://www.sahildua.com, и его основная функция - "This is the most minimal extension converts timestamp to human-readable date format.".
Снимки экрана расширения
Скачать файл CRX расширения Timestamp Converter
Скачайте файлы расширений 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 |
| Официальный 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"
]
}
]
} | |