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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
}