Unix Timestamp Hover

Hover over any unix timestamps on the page and read the time

Что такое Unix Timestamp Hover?

Unix Timestamp Hover - это расширение Chrome, разработанное HandyTools, и его основная функция - "Hover over any unix timestamps on the page and read the time".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Do you look at database tables and logs regularly?

Do you look at timestamps in phpMyAdmin wondering what time 1353761933 translates to?

With this lightweight extension you can hover over any unix/POSIX timestamps on the page and read the time in your local time zone.                    

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

Название Unix Timestamp Hover Unix Timestamp Hover
ID nlhnkiimfokpcabjegdiejdlljmaclap
Официальный URL https://chromewebstore.google.com/detail/unix-timestamp-hover/nlhnkiimfokpcabjegdiejdlljmaclap
Описание Hover over any unix timestamps on the page and read the time
Размер файла 58.49 KB
Количество установок 506
Текущая Версия 1.0
Последнее Обновление 2012-11-24
Дата публикации 2012-11-24
Рейтинг 3.21/5 Всего 14 оценок
Разработчик HandyTools
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unix Timestamp Hover",
    "description": "Hover over any unix timestamps on the page and read the time",
    "version": "1.0",
    "manifest_version": 2,
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "16": "img\/icon16.png"
    },
    "background": {
        "scripts": [
            "js\/analytics.js"
        ]
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "css": [
                "css\/tipTip.css"
            ],
            "js": [
                "js\/jquery-1.8.3.min.js",
                "js\/jquery.highlight-4.js",
                "js\/jquery.tipTip.minified.js",
                "js\/extension.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}