React VT

Visual Testing Tool for React Applications

什么是React VT?

React VT是由react-vt开发的Chrome扩展程序,该扩展的主要功能是“Visual Testing Tool for React Applications”。

扩展截图

screenshot

下载React VT扩展crx文件

下载React VT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 React VT React VT
ID aphjepidficfgphkbggojoemgpmianhi
官方URL https://chromewebstore.google.com/detail/react-vt/aphjepidficfgphkbggojoemgpmianhi
简介 Visual Testing Tool for React Applications
文件大小 1.51 MB
安装次数 1,105
当前版本 0.3.0
更新时间 2017-09-08
上架时间 2017-09-08
评分 5.00/5 共2次评分
开发者 react-vt
电子邮箱 [email protected]
付费类型 free
扩展官网 http://reactvt.io
帮助页面URL https://github.com/ReactVT/react-vt
支持的语言 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"
    }
}