Timestamp Converter

This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.

Что такое Timestamp Converter?

Timestamp Converter - это расширение Chrome, разработанное prajwalrao, и его основная функция - "This extension will help you convert Epoch Timestamp into Human Readable Time on highlight.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Timestamp Converter

Скачайте файлы расширений 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
Электронная почта [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
        }
    ]
}