GraphQL Playground for Chrome
Chrome extension for GraphQL Playground
Cos'è GraphQL Playground for Chrome?
GraphQL Playground for Chrome è un'estensione di Chrome sviluppata da Dustin R. Callaway, e la sua funzione principale è "Chrome extension for GraphQL Playground".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GraphQL Playground for Chrome
Scarica i file di estensione GraphQL Playground for Chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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".
Informazioni di Base sull'Estensione
Nome | GraphQL Playground for Chrome |
ID | kjhjcgclphafojaeeickcokfbhlegecd |
URL Ufficiale | https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd |
Descrizione | Chrome extension for GraphQL Playground |
Dimensione del File | 1.36 MB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2021-04-29 |
Data di Pubblicazione | 2018-07-11 |
Valutazione | 5.00/5 Totale 8 Valutazioni |
Sviluppatore | Dustin R. Callaway |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/drcallaway/chrome-graphql-playground |
URL della Pagina di Aiuto | https://github.com/drcallaway/chrome-graphql-playground/issues |
Lingue Supportate | 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:\/\/*\/" ] } |