GraphIQL Feen
Powerful GraphIQL Explorer
什麼是GraphIQL Feen?
GraphIQL Feen是由bret開發的Chrome擴展程式,該擴展的主要功能是“Powerful GraphIQL Explorer”。
擴展截圖
下載GraphIQL Feen擴展crx文件
下載GraphIQL Feen擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | mcbfdonlkfpbfdpimkjilhdneikhfklp |
官方網址 | 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:;" } |