Relay Developer Tools

Adds Relay debugging tools to the Chrome Developer Tools.

Relay Developer Tools क्या है?

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

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Inspect data in the store of your Relay apps, and how that data changes over time in response to GraphQL queries, and client mutations.                    

एक्सटेंशन की मूल जानकारी

नाम Relay Developer Tools Relay Developer Tools
ID ncedobpgnmkhcmnnkcimnobpfepidadl
आधिकारिक URL https://chromewebstore.google.com/detail/relay-developer-tools/ncedobpgnmkhcmnnkcimnobpfepidadl
विवरण Adds Relay debugging tools to the Chrome Developer Tools.
फ़ाइल का आकार 106 KB
स्थापना संख्या 5,689
वर्तमान संस्करण 1737e3f483db+ (8/3/2021)
अंतिम अपडेट 2021-08-03
प्रकाशन तिथि 2020-03-17
रेटिंग 5.00/5 कुल 6 रेटिंग्स
डेवलपर Meta
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/relayjs/relay-devtools
सहायता पृष्ठ URL https://github.com/relayjs/relay-devtools
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Relay Developer Tools",
    "description": "Adds Relay debugging tools to the Chrome Developer Tools.",
    "version": "0.9.14",
    "version_name": "1737e3f483db+ (8\/3\/2021)",
    "minimum_chrome_version": "78",
    "icons": {
        "16": "icons\/enabled16.png",
        "32": "icons\/enabled32.png",
        "48": "icons\/enabled48.png",
        "128": "icons\/enabled128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/disabled16.png",
            "32": "icons\/disabled32.png",
            "48": "icons\/disabled48.png",
            "128": "icons\/disabled128.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",
        "build\/renderer.js"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/injectGlobalHook.js"
            ],
            "run_at": "document_start"
        }
    ]
}