DebugR
Receive debugging information alongside XMLHttpRequests.
什么是DebugR?
DebugR是由Bob Fanger开发的Chrome扩展程序,该扩展的主要功能是“Receive debugging information alongside XMLHttpRequests.”。
扩展截图
下载DebugR扩展crx文件
下载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: 扩展基本信息
| 名称 | |
| 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:\/\/*\/*"
]
} | |