GraphQL Playground for Chrome

Chrome extension for GraphQL Playground

Was ist GraphQL Playground for Chrome?

GraphQL Playground for Chrome ist eine Chrome-Erweiterung, die von Dustin R. Callaway entwickelt wurde, und ihr Hauptmerkmal ist "Chrome extension for GraphQL Playground".

Erweiterungsscreenshots

screenshot
screenshot

GraphQL Playground for Chrome-Erweiterungs-CRX-Datei herunterladen

Laden Sie GraphQL Playground for Chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name GraphQL Playground for Chrome GraphQL Playground for Chrome
ID kjhjcgclphafojaeeickcokfbhlegecd
Offizielle URL https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd
Beschreibung Chrome extension for GraphQL Playground
Dateigröße 1.36 MB
Installationsanzahl 10,000
Aktuelle Version 1.2.1
Letztes Update 2021-04-29
Veröffentlichungsdatum 2018-07-11
Bewertung 5.00/5 Insgesamt 8 Bewertungen
Entwickler Dustin R. Callaway
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/drcallaway/chrome-graphql-playground
Hilfeseite URL https://github.com/drcallaway/chrome-graphql-playground/issues
Unterstützte Sprachen 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:\/\/*\/"
    ]
}