Helios

Apollo state debugging dev tool

What is Helios?

Helios is a Chrome extension developed by Erik Cox, and its main feature is "Apollo state debugging dev tool".

Extension Screenshots

screenshot
screenshot

Download Helios Extension CRX File

Download Helios 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

                        A Chrome Dev Tool for tracking state in Apollo and Vue.js.                    

Extension Basic Information

Name Helios Helios
ID mjbbelnbkfohllaknipiibodjnjhofhk
Official URL https://chrome.google.com/webstore/detail/helios/mjbbelnbkfohllaknipiibodjnjhofhk
Description Apollo state debugging dev tool
File Size 19.97 KB
Installation Count 25
Current Version 1.0.0
Last Updated 2018-08-31
Publish Date 2018-08-31
Rating 5.00/5 Total 4 Ratings
Developer Erik Cox
Payment Type free
Help Page URL https://github.com/front-street/helios
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Helios",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Apollo state debugging dev tool",
    "offline_enabled": false,
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "background",
        "activeTab",
        "storage",
        "*:\/\/*\/*"
    ],
    "devtools_page": "devtools.html",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}