Redux-Ruleset

Devtools for redux-ruleset. Visualizes your data-flow

Cos'è Redux-Ruleset?

Redux-Ruleset è un'estensione di Chrome sviluppata da redux.ruleset, e la sua funzione principale è "Devtools for redux-ruleset. Visualizes your data-flow".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Redux-Ruleset

Scarica i file di estensione Redux-Ruleset 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

                        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/                    

Informazioni di Base sull'Estensione

Nome Redux-Ruleset Redux-Ruleset
ID diibnbdfcjddnpmlhakebmiabmhhmnii
URL Ufficiale https://chromewebstore.google.com/detail/redux-ruleset/diibnbdfcjddnpmlhakebmiabmhhmnii
Descrizione Devtools for redux-ruleset. Visualizes your data-flow
Dimensione del File 731 KB
Conteggio Installazioni 59
Versione Corrente 1.0.4
Ultimo Aggiornamento 2020-10-20
Data di Pubblicazione 2020-05-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore redux.ruleset
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://redux-ruleset.netlify.com/
Lingue Supportate 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:;"
}