Teaful DevTools

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

什么是Teaful DevTools?

Teaful DevTools是由Aral Roca开发的Chrome扩展程序,该扩展的主要功能是“Teaful DevTools is for debugging application's state changes using Teaful as React state management”。

扩展截图

screenshot

下载Teaful DevTools扩展crx文件

下载Teaful DevTools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Teaful DevTools Teaful DevTools
ID lficdnnjoackdnaddfcgllmjdocofadc
官方URL https://chromewebstore.google.com/detail/teaful-devtools/lficdnnjoackdnaddfcgllmjdocofadc
简介 Teaful DevTools is for debugging application's state changes using Teaful as React state management
文件大小 624 KB
安装次数 28
当前版本 0.1.0
更新时间 2021-12-02
上架时间 2021-12-01
评分 5.00/5 共1次评分
开发者 Aral Roca
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/teafuljs/teaful-devtools
帮助页面URL https://github.com/teafuljs/teaful-devtools
支持的语言 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:\/\/*\/*"
    ]
}