GraphIQL Feen

Powerful GraphIQL Explorer

GraphIQL Feen là gì?

GraphIQL Feen là một tiện ích mở rộng Chrome được phát triển bởi bret, và tính năng chính của nó là "Powerful GraphIQL Explorer".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GraphIQL Feen

Tải xuống các tệp mở rộng GraphIQL Feen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GraphIQL Feen GraphIQL Feen
ID mcbfdonlkfpbfdpimkjilhdneikhfklp
URL Chính Thức https://chromewebstore.google.com/detail/graphiql-feen/mcbfdonlkfpbfdpimkjilhdneikhfklp
Mô tả Powerful GraphIQL Explorer
Kích Thước Tệp 499 KB
Số Lần Cài Đặt 1,641
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2017-01-09
Ngày Phát Hành 2017-01-08
Đánh Giá 3.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển bret
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/bpatters/graphiql-feen
Ngôn Ngữ Được Hỗ Trợ 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:;"
}