Urql Devtools

The official Urql chrome extension

What is Urql Devtools?

Urql Devtools is a Chrome extension developed by urql-dev, and its main feature is "The official Urql chrome extension".

Extension Screenshots

screenshot
screenshot
screenshot

Download Urql Devtools Extension CRX File

Download Urql Devtools extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Features:
 - Inspect responses and cache outcomes
 - See operations and responses in real time
 - Easily trigger requests via the client
 - Test your exchanges in a browser environment

If you haven't already heard about our GraphQL client, you can find out more at the link below:

https://github.com/FormidableLabs/urql                    

Extension Basic Information

Name Urql Devtools Urql Devtools
ID mcfphkbpmkbeofnkjehahlmidmceblmm
Official URL https://chromewebstore.google.com/detail/urql-devtools/mcfphkbpmkbeofnkjehahlmidmceblmm
Description The official Urql chrome extension
File Size 1.85 MB
Installation Count 3,296
Current Version 2.6.2
Last Updated 2021-08-09
Publish Date 2020-05-21
Rating 5.00/5 Total 6 Ratings
Developer urql-dev
Email [email protected]
Payment Type free
Extension Website https://github.com/FormidableLabs/urql-devtools
Help Page URL https://github.com/FormidableLabs/urql-devtools/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Urql Devtools",
    "description": "The official Urql chrome extension",
    "icons": {
        "16": "\/assets\/icon-16.png",
        "32": "\/assets\/icon-32.png",
        "48": "\/assets\/icon-48.png",
        "64": "\/assets\/icon-64.png",
        "128": "\/assets\/icon-128.png",
        "256": "\/assets\/icon-256.png",
        "512": "\/assets\/icon-512.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_title": "Urql Devtools",
        "default_icon": {
            "32": "\/assets\/icon-disabled-32.png",
            "64": "\/assets\/icon-disabled-64.png",
            "128": "\/assets\/icon-disabled-128.png"
        }
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "application": {
        "gecko": {
            "id": "{c11f3a69-f159-4708-b044-853066c2d2fe}",
            "strict_min_version": "42.0"
        }
    },
    "version": "2.6.2"
}