React Stores Devtools Extension

Better experience for debug your react stores with chrome devtools extension

What is React Stores Devtools Extension?

React Stores Devtools Extension is a Chrome extension developed by konstantin24121, and its main feature is "Better experience for debug your react stores with chrome devtools extension".

Extension Screenshots

screenshot

Download React Stores Devtools Extension Extension CRX File

Download React Stores Devtools Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name React Stores Devtools Extension React Stores Devtools Extension
ID jofikieipejiceaccabdhlbedbfhogkm
Official URL https://chromewebstore.google.com/detail/react-stores-devtools-ext/jofikieipejiceaccabdhlbedbfhogkm
Description Better experience for debug your react stores with chrome devtools extension
File Size 716 KB
Installation Count 1,897
Current Version 1.0.0
Last Updated 2020-03-05
Publish Date 2020-03-04
Developer konstantin24121
Email [email protected]
Payment Type free
Extension Website https://ibitcy.github.io/react-stores/
Supported Languages 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:;"
}