Redux DevTools

Redux DevTools for debugging application's state changes.

Was ist Redux DevTools?

Redux DevTools ist eine Chrome-Erweiterung, die von Redux DevTools entwickelt wurde, und ihr Hauptmerkmal ist "Redux DevTools for debugging application's state changes.".

Erweiterungsscreenshots

screenshot

Redux DevTools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redux DevTools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The extension provides power-ups for your Redux development workflow. Apart from Redux, it can be used with any other architectures which handle the state.

This is an open source project. See the official repository for more details: https://github.com/reduxjs/redux-devtools                    

Grundlegende Informationen zur Erweiterung

Name Redux DevTools Redux DevTools
ID lmhkpmbekcpmknklioeibfkpmmfibljd
Offizielle URL https://chromewebstore.google.com/detail/redux-devtools/lmhkpmbekcpmknklioeibfkpmmfibljd
Beschreibung Redux DevTools for debugging application's state changes.
Dateigröße 1.79 MB
Installationsanzahl 1,907,160
Aktuelle Version 3.1.6
Letztes Update 2023-12-14
Veröffentlichungsdatum 2018-12-19
Bewertung 4.64/5 Insgesamt 691 Bewertungen
Entwickler Redux DevTools
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/reduxjs/redux-devtools/tree/master/extension
Hilfeseite URL https://github.com/reduxjs/redux-devtools/issues
Unterstützte Sprachen en
manifest.json
{
    "version": "3.1.6",
    "name": "Redux DevTools",
    "description": "Redux DevTools for debugging application's state changes.",
    "homepage_url": "https:\/\/github.com\/reduxjs\/redux-devtools",
    "manifest_version": 2,
    "page_action": {
        "default_icon": "img\/logo\/gray.png",
        "default_title": "Redux DevTools",
        "default_popup": "window.html#popup"
    },
    "commands": {
        "devtools-left": {
            "description": "DevTools window to left"
        },
        "devtools-right": {
            "description": "DevTools window to right"
        },
        "devtools-bottom": {
            "description": "DevTools window to bottom"
        },
        "devtools-remote": {
            "description": "Remote DevTools"
        },
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    },
    "icons": {
        "16": "img\/logo\/16x16.png",
        "48": "img\/logo\/48x48.png",
        "128": "img\/logo\/128x128.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "content.bundle.js",
                "pagewrap.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        "page.bundle.js"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "permissions": [
        "notifications",
        "contextMenus",
        "storage",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsdJEPwY92xUACA9CcDBDBmbdbp8Ap3cKQ0DJTUuVQvqb4FQAv8RtKY3iUjGvdwuAcSJQIZwHXcP2aNDH3TiFik\/NhRK2GRW8X3OZyTdkuDueABGP2KEX8q1WQDgjX\/rPIinGYztUrvoICw\/UerMPwNW62jwGoVU3YhAGf+15CgX2Y6a4tppnf\/+1mPedKPidh0RsM+aJY98rX+r1SPAHPcGzMjocLkqcT75DZBXer8VQN14tOOzRCd6T6oy7qm7eWru8lJwcY66qMQvhk0osqEod2G3nA7aTWpmqPFS66VEiecP9PgZlp8gQdgZ3dFhA62exydlD55JuRhiMIR63yQIDAQAB"
}