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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον latal.tomas, και η κύρια λειτουργία του είναι "This extension helps you with debugging your Elm applications by transforming the debug produced by Elm to expandable tree".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Elm Debug Helper
Λήψη αρχείων επέκτασης 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 |
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": [ " |