GraphIQL Feen

Powerful GraphIQL Explorer

GraphIQL Feen란 무엇입니까?

GraphIQL Feen은(는) bret에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Powerful GraphIQL Explorer"입니다.

확장 프로그램 스크린샷

screenshot

GraphIQL Feen 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome Extension for GraphIQL with lots of features, and more to come!

* Save/Load Queries and variables to build a library of useful queries.
* Save/Select Server Definitions so you can have different settings for different servers.
* GET/POST/Multi-part GraphQL requests supported!
    * Authorization defined so cookies forwarded to the domain
* Define Headers that will be sent with the request, Headers can even override existing Request headers:
    * Define the Origin: header for CORS requests to allow your server to process correctly.
    * Define CSRF token headers
    * Override all Cookies so you can pass authentication information with your requests.
* EXPORT your entire application state to a JSON file
* IMPORT saved state so you can restore your state 


Coming soon:
* Upload Images with your requests

OPEN SOURCE: Checkout the source code, contribute, critique etc.                    

확장 프로그램 기본 정보

이름 GraphIQL Feen GraphIQL Feen
ID mcbfdonlkfpbfdpimkjilhdneikhfklp
공식 URL https://chromewebstore.google.com/detail/graphiql-feen/mcbfdonlkfpbfdpimkjilhdneikhfklp
설명 Powerful GraphIQL Explorer
파일 크기 499 KB
설치 횟수 1,641
현재 버전 1.0.3
최근 업데이트 2017-01-09
출시 날짜 2017-01-08
평점 3.60/5 총 5 개의 평점
개발자 bret
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/bpatters/graphiql-feen
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.3",
    "name": "GraphIQL Feen",
    "manifest_version": 2,
    "description": "Powerful GraphIQL Explorer",
    "browser_action": {
        "default_title": "GraphIQL Feen"
    },
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "storage",
        "downloads",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "connect-src *; default-src 'self'; script-src 'self';font-src *; style-src * 'unsafe-inline'; img-src 'self' data:;"
}