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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps you with debugging your Elm applications by transforming the debug produced by Elm to expandable tree"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Elm Debug Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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": [ " |