GraphQL Playground for Chrome

Chrome extension for GraphQL Playground

O que é GraphQL Playground for Chrome?

GraphQL Playground for Chrome é uma extensão do Chrome desenvolvida por Dustin R. Callaway, e sua principal característica é "Chrome extension for GraphQL Playground".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GraphQL Playground for Chrome

Baixe arquivos de extensão GraphQL Playground for Chrome no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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".                    

Informações Básicas da Extensão

Nome GraphQL Playground for Chrome GraphQL Playground for Chrome
ID kjhjcgclphafojaeeickcokfbhlegecd
URL Oficial https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd
Descrição Chrome extension for GraphQL Playground
Tamanho do Arquivo 1.36 MB
Contagem de Instalações 10,000
Versão Atual 1.2.1
Última Atualização 2021-04-29
Data de Publicação 2018-07-11
Classificação 5.00/5 Total de 8 Avaliações
Desenvolvedor Dustin R. Callaway
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/drcallaway/chrome-graphql-playground
URL da Página de Ajuda https://github.com/drcallaway/chrome-graphql-playground/issues
Idiomas Suportados 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:\/\/*\/"
    ]
}