WebMon
Monitor variables exported from JavaScript
Что такое WebMon?
WebMon - это расширение Chrome, разработанное Christian Plesner Hansen, и его основная функция - "Monitor variables exported from JavaScript".
Снимки экрана расширения
Скачать файл CRX расширения WebMon
Скачайте файлы расширений WebMon в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
WebMon provides an easy way to monitor running web apps. JavaScript code can export information using the webmon.js library and this chrome extension will read the exported values and display them in a popup. Get the webmon library from http://github.com/plesner/webmon.
Основная информация о расширении
Название | |
ID | edecgbjfjpedgppbmhedaoiffklffnal |
Официальный URL | https://chromewebstore.google.com/detail/webmon/edecgbjfjpedgppbmhedaoiffklffnal |
Описание | Monitor variables exported from JavaScript |
Размер файла | 15.29 KB |
Количество установок | 32 |
Текущая Версия | 0.1 |
Последнее Обновление | 2012-07-28 |
Дата публикации | 2012-07-28 |
Рейтинг | 1.00/5 Всего 1 оценок |
Разработчик | Christian Plesner Hansen |
Тип оплаты | free |
Официальный сайт расширения | http://github.com/plesner/webmon |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "WebMon", "version": "0.1", "description": "Monitor variables exported from JavaScript", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "icon-19.png" }, "content_scripts": [ { "matches": [ "file:\/\/*\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |