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
官方網址 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:\/\/*\/*"
    ]
}