GraphQL Playground for Chrome
Chrome extension for GraphQL Playground
Co to jest GraphQL Playground for Chrome?
GraphQL Playground for Chrome to rozszerzenie Chrome opracowane przez Dustin R. Callaway, a jego główną funkcją jest „Chrome extension for GraphQL Playground”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GraphQL Playground for Chrome
Pobierz pliki rozszerzeń GraphQL Playground for Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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".                     Podstawowe informacje o rozszerzeniu
| Nazwa |  | 
| ID | kjhjcgclphafojaeeickcokfbhlegecd | 
| Oficjalny URL | https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd | 
| Opis | Chrome extension for GraphQL Playground | 
| Rozmiar pliku | 1.36 MB | 
| Liczba instalacji | 10,000 | 
| Aktualna Wersja | 1.2.1 | 
| Ostatnia Aktualizacja | 2021-04-29 | 
| Data Publikacji | 2018-07-11 | 
| Ocena | 5.00/5 Łącznie 8 Oceny | 
| Deweloper | Dustin R. Callaway | 
| [email protected] | |
| Typ Płatności | free | 
| Strona Rozszerzenia | https://github.com/drcallaway/chrome-graphql-playground | 
| Adres URL Strony Pomocy | https://github.com/drcallaway/chrome-graphql-playground/issues | 
| Obsługiwane Języki | 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:\/\/*\/"
    ]
} | |