Rax Developer Tools

Adds Rax debugging tools to the Chrome Developer Tools.

Rax Developer Tools क्या है?

Rax Developer Tools raxjs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds Rax debugging tools to the Chrome Developer Tools."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Rax Developer Tools एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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