Rax Developer Tools

Adds Rax debugging tools to the Chrome Developer Tools.

Rax Developer Tools là gì?

Rax Developer Tools là một tiện ích mở rộng Chrome được phát triển bởi raxjs, và tính năng chính của nó là "Adds Rax debugging tools to the Chrome Developer Tools.".

Ả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 Rax Developer Tools

Tải xuống các tệp mở rộng Rax Developer Tools 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

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

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

Tên Rax Developer Tools Rax Developer Tools
ID anpeoinhjjligmgoiepbnigjhmijblff
URL Chính Thức https://chromewebstore.google.com/detail/rax-developer-tools/anpeoinhjjligmgoiepbnigjhmijblff
Mô tả Adds Rax debugging tools to the Chrome Developer Tools.
Kích Thước Tệp 339 KB
Số Lần Cài Đặt 156
Phiên Bản Hiện Tại 3.6.0
Cập Nhật Lần Cuối 2019-11-28
Ngày Phát Hành 2019-11-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển raxjs
Loại Thanh Toán free
Trang Web Mở Rộng https://rax.js.org/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}