Cypress Scenario Recorder
A Chrome extension for recording browser interaction and generating Cypress scripts
What is Cypress Scenario Recorder?
Cypress Scenario Recorder is a Chrome extension developed by tavarez.oscar, and its main feature is "A Chrome extension for recording browser interaction and generating Cypress scripts".
Extension Screenshots
Download Cypress Scenario Recorder Extension CRX File
Download Cypress Scenario Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Based on Puppeteer recorder Source code: https://github.com/oscartavarez/cypress-recorder
Extension Basic Information
Name | Cypress Scenario Recorder |
ID | fmpgoobcionmfneadjapdabmjfkmfekb |
Official URL | https://chromewebstore.google.com/detail/cypress-scenario-recorder/fmpgoobcionmfneadjapdabmjfkmfekb |
Description | A Chrome extension for recording browser interaction and generating Cypress scripts |
File Size | 1.2 MB |
Installation Count | 8,453 |
Current Version | 0.0.3 |
Last Updated | 2019-10-08 |
Publish Date | 2019-10-08 |
Rating | 4.87/5 Total 15 Ratings |
Developer | tavarez.oscar |
[email protected] | |
Payment Type | free |
Supported Languages | en |
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 } } |