Simple Performance Bar

Simple site performance bar that presents network, server, client and pageload times

Что такое Simple Performance Bar?

Simple Performance Bar - это расширение Chrome, разработанное Oliver Tse, и его основная функция - "Simple site performance bar that presents network, server, client and pageload times".

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

screenshot
screenshot
screenshot

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

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

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

                        Using the Navigation Timing API, the Simple Performance Bar presents network, server, client and page load times as a group of easy to read bars fixed to the bottom of your browser.  Each time your page loads, the Simple Performance Bar appears.  

Network, server and client time calculations are found in the W3C Navigation Timing Draft ( https://dvcs.w3.org/hg/webperf/raw-file/tip/specs/NavigationTiming/Overview.html ). Network time is connectEnd minus navigationStart.  Server time is responseEnd minus connectEnd.  Finally, client time is loadEventEnd minus responseEnd.                    

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

Название Simple Performance Bar Simple Performance Bar
ID gkicgocakpcjjdeigifekmfmpcpepakk
Официальный URL https://chromewebstore.google.com/detail/simple-performance-bar/gkicgocakpcjjdeigifekmfmpcpepakk
Описание Simple site performance bar that presents network, server, client and pageload times
Размер файла 11.04 KB
Количество установок 277
Текущая Версия 1.0
Последнее Обновление 2014-11-18
Дата публикации 2014-11-17
Рейтинг 4.67/5 Всего 6 оценок
Разработчик Oliver Tse
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Performance Bar",
    "description": "Simple site performance bar that presents network, server, client and pageload times",
    "version": "1.0",
    "icons": {
        "128": "simplePerfBar128x128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "simplePerfBar.css"
            ],
            "js": [
                "simplePerfBar.js"
            ]
        }
    ]
}