GraphQL Playground for Chrome
Chrome extension for GraphQL Playground
Wat is GraphQL Playground for Chrome?
GraphQL Playground for Chrome is een Chrome-extensie ontwikkeld door Dustin R. Callaway, en de belangrijkste functie is "Chrome extension for GraphQL Playground".
Extensie Screenshots
Download het CRX-bestand van de extensie GraphQL Playground for Chrome
Download GraphQL Playground for Chrome-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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".
Basisinformatie over de Extensie
Naam | GraphQL Playground for Chrome |
ID | kjhjcgclphafojaeeickcokfbhlegecd |
Officiële URL | https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd |
Beschrijving | Chrome extension for GraphQL Playground |
Bestandsgrootte | 1.36 MB |
Aantal Installaties | 10,000 |
Huidige Versie | 1.2.1 |
Laatst Bijgewerkt | 2021-04-29 |
Publicatiedatum | 2018-07-11 |
Beoordeling | 5.00/5 Totaal 8 Beoordelingen |
Ontwikkelaar | Dustin R. Callaway |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/drcallaway/chrome-graphql-playground |
Help Pagina-URL | https://github.com/drcallaway/chrome-graphql-playground/issues |
Ondersteunde Talen | 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:\/\/*\/" ] } |