DebugR

Receive debugging information alongside XMLHttpRequests.

DebugRคืออะไร?

DebugR เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bob Fanger และคุณลักษณะหลักของมันคือ "Receive debugging information alongside XMLHttpRequests."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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:\/\/*\/*"
    ]
}