GraphQL Playground for Chrome
Chrome extension for GraphQL Playground
Что такое GraphQL Playground for Chrome?
GraphQL Playground for Chrome - это расширение Chrome, разработанное Dustin R. Callaway, и его основная функция - "Chrome extension for GraphQL Playground".
Снимки экрана расширения
Скачать файл CRX расширения GraphQL Playground for Chrome
Скачайте файлы расширений GraphQL Playground for Chrome в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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". Основная информация о расширении
| Название | |
| ID | kjhjcgclphafojaeeickcokfbhlegecd |
| Официальный URL | https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd |
| Описание | Chrome extension for GraphQL Playground |
| Размер файла | 1.36 MB |
| Количество установок | 10,000 |
| Текущая Версия | 1.2.1 |
| Последнее Обновление | 2021-04-29 |
| Дата публикации | 2018-07-11 |
| Рейтинг | 5.00/5 Всего 8 оценок |
| Разработчик | Dustin R. Callaway |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/drcallaway/chrome-graphql-playground |
| URL страницы помощи | https://github.com/drcallaway/chrome-graphql-playground/issues |
| Поддерживаемые языки | 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:\/\/*\/"
]
} | |