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ファイルをダウンロード

Elm Debug Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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