React VT

Visual Testing Tool for React Applications

Cos'è React VT?

React VT è un'estensione di Chrome sviluppata da react-vt, e la sua funzione principale è "Visual Testing Tool for React Applications".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione React VT

Scarica i file di estensione React VT 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

                        Data-driven visual testing library for React developers

React VT presents a live view of the React component structure of your app, along with current state and props.

Users can define assertions and test them in real time while interacting with their application. Once the user is satisfied with their defined tests, they can export their assertions into an Enzyme file.                    

Informazioni di Base sull'Estensione

Nome React VT React VT
ID aphjepidficfgphkbggojoemgpmianhi
URL Ufficiale https://chromewebstore.google.com/detail/react-vt/aphjepidficfgphkbggojoemgpmianhi
Descrizione Visual Testing Tool for React Applications
Dimensione del File 1.51 MB
Conteggio Installazioni 1,105
Versione Corrente 0.3.0
Ultimo Aggiornamento 2017-09-08
Data di Pubblicazione 2017-09-08
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore react-vt
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://reactvt.io
URL della Pagina di Aiuto https://github.com/ReactVT/react-vt
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "React VT",
    "description": "Visual Testing Tool for React Applications",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script\/script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "logo48.png",
        "default_title": "React Visual Testing Tool",
        "default_popup": "popup.html"
    },
    "devtools_page": "devtools.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [
        "devtools.html",
        "panel\/index.html",
        "*.png",
        "*.eot",
        "*.woff",
        "*.woff2",
        "*.ttf",
        "*.svg"
    ],
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    }
}