Redux custom dev tool

Redux custom tool allow you to see all the dispatched actions

Τι είναι το Redux custom dev tool;

Το Redux custom dev tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον lorenzo.colarieti, και η κύρια λειτουργία του είναι "Redux custom tool allow you to see all the dispatched actions".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Redux custom dev tool

Λήψη αρχείων επέκτασης Redux custom dev tool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Tracking the actions of Redux. Fast and reliable                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Redux custom dev tool Redux custom dev tool
ID midmaifgncfeiihmbnlhhahcmjgincko
Επίσημο URL https://chromewebstore.google.com/detail/redux-custom-dev-tool/midmaifgncfeiihmbnlhhahcmjgincko
Περιγραφή Redux custom tool allow you to see all the dispatched actions
Μέγεθος Αρχείου 1.16 MB
Αριθμός Εγκαταστάσεων 141
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2022-03-30
Ημερομηνία Δημοσίευσης 2022-03-29
Προγραμματιστής lorenzo.colarieti
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Redux custom dev tool",
    "description": "Redux custom tool allow you to see all the dispatched actions",
    "version": "0.0.1",
    "manifest_version": 3,
    "permissions": [
        "activeTab"
    ],
    "host_permissions": [
        ""
    ],
    "devtools_page": "devtools.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}