GraphQL Playground for Chrome

Chrome extension for GraphQL Playground

GraphQL Playground for Chromeとは何ですか?

GraphQL Playground for ChromeはDustin R. Callawayによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension for GraphQL Playground」です。

拡張機能のスクリーンショット

screenshot
screenshot

GraphQL Playground for Chrome拡張機能のCRXファイルをダウンロード

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

拡張機能の基本情報

名前 GraphQL Playground for Chrome GraphQL Playground for Chrome
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
Eメール [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:\/\/*\/"
    ]
}