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 |
| 官方網址 | 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:\/\/*\/*"
]
} | |