GraphQL Playground for Chrome

Chrome extension for GraphQL Playground

GraphQL Playground for Chrome란 무엇입니까?

GraphQL Playground for Chrome은(는) Dustin R. Callaway에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Chrome extension for GraphQL Playground"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GraphQL Playground for Chrome 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Exposes the awesome GraphQL Playground application as a Chrome extension. This is especially useful if your GraphQL server requires cookie credentials from a session that you've established in your browser.

SEND COOKIE CREDENTIALS
To include cookies in your GraphQL calls, click on the gear icon in the top right-hand corner and change the "request.credentials" property from "omit" to "include" and click "SAVE SETTINGS".

CHANGE FROM DARK TO LIGHT THEME
If you prefer a light theme, click on the gear icon in the top right-hand corner and change the "editor.theme" property from "dark" to "light" and click "SAVE SETTINGS".                    

확장 프로그램 기본 정보

이름 GraphQL Playground for Chrome GraphQL Playground for Chrome
ID kjhjcgclphafojaeeickcokfbhlegecd
공식 URL https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd
설명 Chrome extension for GraphQL Playground
파일 크기 1.36 MB
설치 횟수 10,000
현재 버전 1.2.1
최근 업데이트 2021-04-29
출시 날짜 2018-07-11
평점 5.00/5 총 8 개의 평점
개발자 Dustin R. Callaway
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/drcallaway/chrome-graphql-playground
도움말 페이지 URL https://github.com/drcallaway/chrome-graphql-playground/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GraphQL Playground for Chrome",
    "version": "1.2.1",
    "description": "Chrome extension for GraphQL Playground",
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "GraphQL Playground for Chrome",
        "default_icon": {
            "64": "public\/logo_64.png",
            "128": "public\/logo_128.png",
            "256": "public\/logo_256.png"
        }
    },
    "icons": {
        "64": "public\/logo_64.png",
        "128": "public\/logo_128.png",
        "256": "public\/logo_256.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}