React VT

Visual Testing Tool for React Applications

O que é React VT?

React VT é uma extensão do Chrome desenvolvida por react-vt, e sua principal característica é "Visual Testing Tool for React Applications".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão React VT

Baixe arquivos de extensão React VT no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome React VT React VT
ID aphjepidficfgphkbggojoemgpmianhi
URL Oficial https://chromewebstore.google.com/detail/react-vt/aphjepidficfgphkbggojoemgpmianhi
Descrição Visual Testing Tool for React Applications
Tamanho do Arquivo 1.51 MB
Contagem de Instalações 1,105
Versão Atual 0.3.0
Última Atualização 2017-09-08
Data de Publicação 2017-09-08
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor react-vt
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://reactvt.io
URL da Página de Ajuda https://github.com/ReactVT/react-vt
Idiomas Suportados 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"
    }
}