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 |
| Eメール | [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:\/\/*\/*"
]
} | |