Teaful DevTools

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

Qu'est-ce que Teaful DevTools ?

Teaful DevTools est une extension Chrome développée par Aral Roca, et sa fonction principale est "Teaful DevTools is for debugging application's state changes using Teaful as React state management".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Teaful DevTools

Téléchargez les fichiers d'extension Teaful DevTools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Teaful DevTools Teaful DevTools
ID lficdnnjoackdnaddfcgllmjdocofadc
URL Officiel https://chromewebstore.google.com/detail/teaful-devtools/lficdnnjoackdnaddfcgllmjdocofadc
Description Teaful DevTools is for debugging application's state changes using Teaful as React state management
Taille du Fichier 624 KB
Nombre d'Installations 28
Version Actuelle 0.1.0
Dernière Mise à Jour 2021-12-02
Date de Publication 2021-12-01
Évaluation 5.00/5 Total 1 Évaluations
Développeur Aral Roca
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/teafuljs/teaful-devtools
URL de la Page d'Aide https://github.com/teafuljs/teaful-devtools
Langues Prises en Charge 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:\/\/*\/*"
    ]
}