Teaful DevTools

Teaful DevTools is for debugging application's state changes using Teaful as React state management

Co je Teaful DevTools?

Teaful DevTools je rozšíření Chrome vyvinuté Aral Roca, a jeho hlavní funkcí je „Teaful DevTools is for debugging application's state changes using Teaful as React state management“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Teaful DevTools

Stáhněte si soubory rozšíření Teaful DevTools ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Debug the Teaful stores using Teaful DevTools. Teaful is a tiny, easy and powerful React state management

Historial of changes:
- What and where changed (diff)
- Who, how and why changed (stack trace)
- Add a store modification from Teaful Devtools and see how the UI reacts.                    

Základní Informace o Rozšíření

Název Teaful DevTools Teaful DevTools
ID lficdnnjoackdnaddfcgllmjdocofadc
Oficiální URL https://chromewebstore.google.com/detail/teaful-devtools/lficdnnjoackdnaddfcgllmjdocofadc
Popis Teaful DevTools is for debugging application's state changes using Teaful as React state management
Velikost souboru 624 KB
Počet instalací 28
Aktuální Verze 0.1.0
Poslední Aktualizace 2021-12-02
Datum Vydání 2021-12-01
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Aral Roca
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/teafuljs/teaful-devtools
URL Stránky Nápovědy https://github.com/teafuljs/teaful-devtools
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.0",
    "author": "Aral Roca",
    "name": "Teaful DevTools",
    "short_name": "Teaful DevTools",
    "description": "Teaful DevTools is for debugging application's state changes using Teaful as React state management",
    "homepage_url": "https:\/\/github.com\/teafuljs\/teaful-devtools",
    "manifest_version": 2,
    "icons": {
        "16": "img\/logo_16x16.png",
        "48": "img\/logo_48x48.png",
        "128": "img\/logo_128x128.png"
    },
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}