Urql Devtools

The official Urql chrome extension

ما هو Urql Devtools؟

Urql Devtools هو إضافة Chrome تم تطويرها بواسطة urql-dev، والميزة الرئيسية لها هي "The official Urql chrome extension".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Urql Devtools

قم بتنزيل ملفات الامتداد Urql Devtools بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Features:
 - Inspect responses and cache outcomes
 - See operations and responses in real time
 - Easily trigger requests via the client
 - Test your exchanges in a browser environment

If you haven't already heard about our GraphQL client, you can find out more at the link below:

https://github.com/FormidableLabs/urql                    

معلومات أساسية عن التمديد

الاسم Urql Devtools Urql Devtools
ID mcfphkbpmkbeofnkjehahlmidmceblmm
عنوان URL الرسمي https://chromewebstore.google.com/detail/urql-devtools/mcfphkbpmkbeofnkjehahlmidmceblmm
الوصف The official Urql chrome extension
حجم الملف 1.85 MB
عدد التثبيتات 3,296
النسخة الحالية 2.6.2
آخر تحديث 2021-08-09
تاريخ النشر 2020-05-21
تقييم 5.00/5 مجموع تقييمات 6
المطور urql-dev
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/FormidableLabs/urql-devtools
عنوان صفحة المساعدة https://github.com/FormidableLabs/urql-devtools/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Urql Devtools",
    "description": "The official Urql chrome extension",
    "icons": {
        "16": "\/assets\/icon-16.png",
        "32": "\/assets\/icon-32.png",
        "48": "\/assets\/icon-48.png",
        "64": "\/assets\/icon-64.png",
        "128": "\/assets\/icon-128.png",
        "256": "\/assets\/icon-256.png",
        "512": "\/assets\/icon-512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_title": "Urql Devtools",
        "default_icon": {
            "32": "\/assets\/icon-disabled-32.png",
            "64": "\/assets\/icon-disabled-64.png",
            "128": "\/assets\/icon-disabled-128.png"
        }
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "application": {
        "gecko": {
            "id": "{c11f3a69-f159-4708-b044-853066c2d2fe}",
            "strict_min_version": "42.0"
        }
    },
    "version": "2.6.2"
}