Teaful DevTools

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

Hvad er Teaful DevTools?

Teaful DevTools er en Chrome-udvidelse udviklet af Aral Roca, og dens hovedfunktion er "Teaful DevTools is for debugging application's state changes using Teaful as React state management".

Udvidelsesskærmbilleder

screenshot

Download Teaful DevTools-udvidelses-CRX-fil

Download Teaful DevTools-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

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Teaful DevTools Teaful DevTools
ID lficdnnjoackdnaddfcgllmjdocofadc
Officiel URL https://chromewebstore.google.com/detail/teaful-devtools/lficdnnjoackdnaddfcgllmjdocofadc
Beskrivelse Teaful DevTools is for debugging application's state changes using Teaful as React state management
Filstørrelse 624 KB
Antal Installationer 28
Nuværende Version 0.1.0
Senest Opdateret 2021-12-02
Udgivelsesdato 2021-12-01
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Aral Roca
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/teafuljs/teaful-devtools
Hjælpeside-URL https://github.com/teafuljs/teaful-devtools
Understøttede Sprog 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:\/\/*\/*"
    ]
}