DebugR
Receive debugging information alongside XMLHttpRequests.
Что такое DebugR?
DebugR - это расширение Chrome, разработанное Bob Fanger, и его основная функция - "Receive debugging information alongside XMLHttpRequests.".
Снимки экрана расширения
Скачать файл CRX расширения DebugR
Скачайте файлы расширений DebugR в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Server code (example is php, but the extension is language agnostic): Client via javascript: window.addEventListener('message', function (e) { if (e.data.debugR) { console.log(e.data); } }, false); document.documentElement.setAttribute('data-debugR'); // Signal the extension that the eventlistener is active. Using debugr.js helper:
Основная информация о расширении
Название | DebugR |
ID | odgodmleeenojpjigkkbicijhpplolmm |
Официальный URL | https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm |
Описание | Receive debugging information alongside XMLHttpRequests. |
Размер файла | 666 KB |
Количество установок | 26 |
Текущая Версия | 1.3 |
Последнее Обновление | 2018-05-16 |
Дата публикации | 2018-05-16 |
Разработчик | Bob Fanger |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://bfanger.nl/debugr/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DebugR", "version": "1.3", "manifest_version": 2, "description": "Receive debugging information alongside XMLHttpRequests.", "icons": { "16": "img\/16.png", "128": "img\/128.png" }, "background": { "scripts": [ "js\/debugr-Daemon.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/debugr-forwarder.js" ], "run_at": "document_start" } ], "permissions": [ "webRequest", "webRequestBlocking", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |