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
官方網址 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"
            ]
        }
    ]
}