Timely

This extension converts unix epoch timestamps to human-readable times.

Что такое Timely?

Timely - это расширение Chrome, разработанное Chris Warren, и его основная функция - "This extension converts unix epoch timestamps to human-readable times.".

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

screenshot

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

Скачайте файлы расширений Timely в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Find a page containing UNIX timestamps, e.g. http://en.wikipedia.org/wiki/Unix_time or the fantastic JSONView extension.

Simply click the clock in the toolbar and all timestamps (in seconds or milliseconds from epoch) will be converted to human-readable dates and times.                    

Основная информация о расширении

Название Timely Timely
ID phpkahchjodmhmckibejeafoflafljma
Официальный URL https://chromewebstore.google.com/detail/timely/phpkahchjodmhmckibejeafoflafljma
Описание This extension converts unix epoch timestamps to human-readable times.
Размер файла 10.88 KB
Количество установок 2,108
Текущая Версия 1.0.1
Последнее Обновление 2013-10-27
Дата публикации 2013-10-27
Рейтинг 4.67/5 Всего 9 оценок
Разработчик Chris Warren
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Timely",
    "short_name": "Timely",
    "description": "This extension converts unix epoch timestamps to human-readable times.",
    "icons": {
        "128": "icon128.png"
    },
    "version": "1.0.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Show human-readable timestamps"
    }
}