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
Eメール [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:\/\/*\/*"
    ]
}