Elm Debug Helper

This extension helps you with debugging your Elm applications by transforming the debug produced by Elm to expandable tree

Elm Debug Helper란 무엇입니까?

Elm Debug Helper은(는) latal.tomas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps you with debugging your Elm applications by transforming the debug produced by Elm to expandable tree"입니다.

확장 프로그램 스크린샷

screenshot

Elm Debug Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This web browser extension inserts the elm-debug-transformer (https://www.npmjs.com/package/elm-debug-transformer) into all pages you are working on without the need to spoil your project with yet another NPM package. Your project can stay clean of such magic and you can have your own settings on how to transform the Debug.log output.                    

확장 프로그램 기본 정보

이름 Elm Debug Helper Elm Debug Helper
ID edlhclhffmclbhgifomamlomnfolnepa
공식 URL https://chromewebstore.google.com/detail/elm-debug-helper/edlhclhffmclbhgifomamlomnfolnepa
설명 This extension helps you with debugging your Elm applications by transforming the debug produced by Elm to expandable tree
파일 크기 650 KB
설치 횟수 324
현재 버전 0.1.1
최근 업데이트 2020-10-06
출시 날짜 2020-10-04
평점 5.00/5 총 4 개의 평점
개발자 latal.tomas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kraklin/elm-debug-extension
도움말 페이지 URL https://github.com/kraklin/elm-debug-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Elm Debug Helper",
    "version": "0.1.1",
    "icons": {
        "16": "assets\/icons\/favicon-dark-16.png",
        "32": "assets\/icons\/favicon-dark-32.png",
        "96": "assets\/icons\/favicon-dark-96.png",
        "128": "assets\/icons\/favicon-dark-128.png"
    },
    "description": "This extension helps you with debugging your Elm applications by transforming the debug produced by Elm to expandable tree",
    "homepage_url": "https:\/\/github.com\/kraklin\/elm-debug-extension",
    "short_name": "Elm Debug Helper",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "author": "Tomas Latal",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/favicon-dark-16.png",
            "32": "assets\/icons\/favicon-dark-32.png",
            "96": "assets\/icons\/favicon-dark-96.png",
            "128": "assets\/icons\/favicon-dark-128.png"
        },
        "default_title": "Elm Debug Helper",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ]
}