Rax Developer Tools

Adds Rax debugging tools to the Chrome Developer Tools.

Rax Developer Toolsคืออะไร?

Rax Developer Tools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย raxjs และคุณลักษณะหลักของมันคือ "Adds Rax debugging tools to the Chrome Developer Tools."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rax Developer Tools

ดาวน์โหลดไฟล์ส่วนขยาย Rax Developer Tools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Rax Developer Tools lets you inspect the Rax component's structure, props and state.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Rax Developer Tools Rax Developer Tools
ID anpeoinhjjligmgoiepbnigjhmijblff
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/rax-developer-tools/anpeoinhjjligmgoiepbnigjhmijblff
คำอธิบาย Adds Rax debugging tools to the Chrome Developer Tools.
ขนาดไฟล์ 339 KB
จำนวนการติดตั้ง 156
เวอร์ชันปัจจุบัน 3.6.0
อัปเดตครั้งล่าสุด 2019-11-28
วันที่เผยแพร่ 2019-11-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา raxjs
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://rax.js.org/
ภาษาที่รองรับ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Rax Developer Tools",
    "description": "Adds Rax debugging tools to the Chrome Developer Tools.",
    "version": "3.6.0",
    "minimum_chrome_version": "49",
    "icons": {
        "16": "icons\/16-production.png",
        "32": "icons\/32-production.png",
        "48": "icons\/48-production.png",
        "128": "icons\/128-production.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16-disabled.png",
            "32": "icons\/32-disabled.png",
            "48": "icons\/48-disabled.png",
            "128": "icons\/128-disabled.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "devtools_page": "main.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "main.html",
        "panel.html",
        "build\/backend.js"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}