Rax Developer Tools

Adds Rax debugging tools to the Chrome Developer Tools.

Rax Developer Toolsとは何ですか?

Rax Developer Toolsはraxjsによって開発されたChromeの拡張機能で、その主な機能は「Adds Rax debugging tools to the Chrome Developer Tools.」です。

拡張機能のスクリーンショット

screenshot

Rax Developer Tools拡張機能のCRXファイルをダウンロード

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"
        }
    ]
}