netmonitor

shows network usage of webpages when the browser doesn't

Что такое netmonitor?

netmonitor - это расширение Chrome, разработанное Unknown, и его основная функция - "shows network usage of webpages when the browser doesn't".

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

screenshot

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

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

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

                        The "loading" icon for tabs in browsers only spins at first when the page is loaded. But even after that, web pages can do network IO via JavaScript in background without the user knowing. This extension highlights such network activity and shows a count of requests done till now by the page in a small indicator. It's updated in real-time for each tab.

A lot of web pages use background network requests for tracking user actions and sending data to remote servers, lazily loading heavy assets etc., and all that goes unnoticed by the user. Ideally, the browser's "loading icon" should spin for those requests as well.

Uploaded to my account by request of the author.  Go star his GitHub project here: https://github.com/awalGarg/netmonitor                    

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

Название netmonitor netmonitor
ID jekcpjegemgakiacfgiplacomhabclce
Официальный URL https://chromewebstore.google.com/detail/netmonitor/jekcpjegemgakiacfgiplacomhabclce
Описание shows network usage of webpages when the browser doesn't
Размер файла 92.13 KB
Количество установок 963
Текущая Версия 0.0.4
Последнее Обновление 2016-07-09
Дата публикации 2016-07-09
Рейтинг 3.63/5 Всего 16 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/awalGarg/netmonitor
URL страницы помощи https://github.com/awalGarg/netmonitor/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "netmonitor",
    "description": "shows network usage of webpages when the browser doesn't",
    "version": "0.0.4",
    "background": {
        "scripts": [
            "static\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "static\/off.png",
        "default_popup": "static\/popup.html"
    },
    "permissions": [
        "activeTab",
        "webRequest",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "static\/off.png",
        "static\/on.gif"
    ]
}