Urql Devtools

The official Urql chrome extension

Urql Devtools란 무엇입니까?

Urql Devtools은(는) urql-dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The official Urql chrome extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Urql Devtools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
}