React Stores Devtools Extension

Better experience for debug your react stores with chrome devtools extension

Cos'è React Stores Devtools Extension?

React Stores Devtools Extension è un'estensione di Chrome sviluppata da konstantin24121, e la sua funzione principale è "Better experience for debug your react stores with chrome devtools extension".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione React Stores Devtools Extension

Scarica i file di estensione React Stores Devtools Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Debug your react stores with chrome devtools extension.

- 🔍 Inspect stores current state
- 📜 Check store history step-by-step
- 🔬 Compare diff between states
- 📨 Dispatch state directly from devtools
- 🍔 Clickable stack trace for history and listners
- 🚀 Use in production build
- 📦 Works with isolated stores
- 🎨 Familiar native chrome themes                    

Informazioni di Base sull'Estensione

Nome React Stores Devtools Extension React Stores Devtools Extension
ID jofikieipejiceaccabdhlbedbfhogkm
URL Ufficiale https://chromewebstore.google.com/detail/react-stores-devtools-ext/jofikieipejiceaccabdhlbedbfhogkm
Descrizione Better experience for debug your react stores with chrome devtools extension
Dimensione del File 716 KB
Conteggio Installazioni 1,897
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-03-05
Data di Pubblicazione 2020-03-04
Sviluppatore konstantin24121
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://ibitcy.github.io/react-stores/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "React Stores Devtools Extension",
    "version": "1.0.0",
    "description": "Better experience for debug your react stores with chrome devtools extension",
    "short_name": "React Stores Inspector",
    "devtools_page": "main.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "connect.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "inject.js",
        "connect.js"
    ],
    "icons": {
        "16": "img\/16x16.png",
        "48": "img\/48x48.png",
        "128": "img\/128x128.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}