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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | 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:\/\/*\/" ] } |