DebugR

Receive debugging information alongside XMLHttpRequests.

DebugR là gì?

DebugR là một tiện ích mở rộng Chrome được phát triển bởi Bob Fanger, và tính năng chính của nó là "Receive debugging information alongside XMLHttpRequests.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng DebugR

Tải xuống các tệp mở rộng DebugR dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

 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:                      

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DebugR DebugR
ID odgodmleeenojpjigkkbicijhpplolmm
URL Chính Thức https://chromewebstore.google.com/detail/debugr/odgodmleeenojpjigkkbicijhpplolmm
Mô tả Receive debugging information alongside XMLHttpRequests.
Kích Thước Tệp 666 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2018-05-16
Ngày Phát Hành 2018-05-16
Nhà Phát Triển Bob Fanger
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://bfanger.nl/debugr/
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
    ]
}