Is This GraphQL
See whether a website is using GraphQL at a glance
Hvad er Is This GraphQL?
Is This GraphQL er en Chrome-udvidelse udviklet af https://stellate.co, og dens hovedfunktion er "See whether a website is using GraphQL at a glance".
Udvidelsesskærmbilleder
Download Is This GraphQL-udvidelses-CRX-fil
Download Is This GraphQL-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension detects whether the website you are visiting right now is using GraphQL and which GraphQL APIs it's querying from. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | bpddjcoknlkjonemmdokaeeplmjhhnhh |
| Officiel URL | https://chromewebstore.google.com/detail/is-this-graphql/bpddjcoknlkjonemmdokaeeplmjhhnhh |
| Beskrivelse | See whether a website is using GraphQL at a glance |
| Filstørrelse | 754 KB |
| Antal Installationer | 260 |
| Nuværende Version | 1.5.0 |
| Senest Opdateret | 2023-09-13 |
| Udgivelsesdato | 2021-04-05 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | https://stellate.co |
| [email protected] | |
| Betalingsmetode | free |
| URL til Fortrolighedspolitik Side | https://stellate.co/privacy |
| Understøttede Sprog | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Is This GraphQL",
"version": "1.5.0",
"manifest_version": 2,
"description": "See whether a website is using GraphQL at a glance",
"homepage_url": "https:\/\/stellate.co",
"icons": {
"16": "icons\/icon-graphql-no-16.png",
"48": "icons\/icon-graphql-no-48.png",
"128": "icons\/icon-graphql-no-128.png"
},
"browser_action": {
"default_title": "GraphQL",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"permissions": [
"webRequest",
"https:\/\/*\/*"
]
} | |