Cypress Scenario Recorder

Cypress Scenario Recorder

A Chrome extension for recording browser interaction and generating Cypress scripts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cypress Scenario Recorder",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "A Chrome extension for recording browser interaction and generating Cypress scripts",
  "permissions": [
    "storage",
    "webNavigation",
    "activeTab",
    "*://*/"
  ],
  "icons": {
    "128": "images/app_icon_128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "images/icon-black.png",
    "default_title": "Cypress Recorder",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}