React VT

Visual Testing Tool for React Applications

Τι είναι το React VT;

Το React VT είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον react-vt, και η κύρια λειτουργία του είναι "Visual Testing Tool for React Applications".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης React VT

Λήψη αρχείων επέκτασης 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"
    }
}