GraphQL Playground for Chrome

Chrome extension for GraphQL Playground

GraphQL Playground for Chrome là gì?

GraphQL Playground for Chrome là một tiện ích mở rộng Chrome được phát triển bởi Dustin R. Callaway, và tính năng chính của nó là "Chrome extension for GraphQL Playground".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GraphQL Playground for Chrome

Tải xuống các tệp mở rộng GraphQL Playground for Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GraphQL Playground for Chrome GraphQL Playground for Chrome
ID kjhjcgclphafojaeeickcokfbhlegecd
URL Chính Thức https://chromewebstore.google.com/detail/graphql-playground-for-ch/kjhjcgclphafojaeeickcokfbhlegecd
Mô tả Chrome extension for GraphQL Playground
Kích Thước Tệp 1.36 MB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2021-04-29
Ngày Phát Hành 2018-07-11
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Dustin R. Callaway
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/drcallaway/chrome-graphql-playground
URL Trang Trợ Giúp https://github.com/drcallaway/chrome-graphql-playground/issues
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/"
    ]
}