Redux-Ruleset

Devtools for redux-ruleset. Visualizes your data-flow

What is Redux-Ruleset?

Redux-Ruleset is a Chrome extension developed by redux.ruleset, and its main feature is "Devtools for redux-ruleset. Visualizes your data-flow".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Redux-Ruleset Extension CRX File

Download Redux-Ruleset 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

                        Redux-Ruleset is a redux middleware that can manage your dataflow. This chrome extension visualizes how your data flows within your app.
If you model your entire data-flow with redux-ruleset you will be not only able to visualize why data flows but also why data not flows. 
This is an early stage product, so maybe you will find bugs. Please report them to https://github.com/manuelJung/ruleset-devtools/issues.

If you don't know redux-ruleset visit the docs: https://redux-ruleset.netlify.com/                    

Extension Basic Information

Name Redux-Ruleset Redux-Ruleset
ID diibnbdfcjddnpmlhakebmiabmhhmnii
Official URL https://chromewebstore.google.com/detail/redux-ruleset/diibnbdfcjddnpmlhakebmiabmhhmnii
Description Devtools for redux-ruleset. Visualizes your data-flow
File Size 731 KB
Installation Count 59
Current Version 1.0.4
Last Updated 2020-10-20
Publish Date 2020-05-02
Rating 5.00/5 Total 1 Ratings
Developer redux.ruleset
Email [email protected]
Payment Type free
Extension Website https://redux-ruleset.netlify.com/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0.4",
    "name": "Redux-Ruleset",
    "short_name": "Redux-Ruleset",
    "description": "Devtools for redux-ruleset. Visualizes your data-flow",
    "homepage_url": "https:\/\/redux-ruleset.netlify.com",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "pageScript.js"
    ],
    "minimum_chrome_version": "10.0",
    "devtools_page": "devtools.html",
    "content_security_policy": "script-src 'self' 'sha256-5As4+3YpY62+l38PsxCEkjB1R4YtyktBtRScTJ3fyLU='; object-src 'self'; style-src * 'unsafe-inline'; img-src 'self' data:;"
}