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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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:\/\/*\/*"
    ]
}