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文件

下载GraphQL Playground for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/"
    ]
}