React VT

React VT

Visual Testing Tool for React Applications

Merlin
Additional files are visible only to premium users

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": [
        "<all_urls>"
      ],
      "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"
  }
}