Cypress Scenario Recorder
A Chrome extension for recording browser interaction and generating Cypress scripts
什么是Cypress Scenario Recorder?
Cypress Scenario Recorder是由tavarez.oscar开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension for recording browser interaction and generating Cypress scripts”。
扩展截图
下载Cypress Scenario Recorder扩展crx文件
下载Cypress Scenario Recorder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Based on Puppeteer recorder Source code: https://github.com/oscartavarez/cypress-recorder
扩展基本信息
名称 | Cypress Scenario Recorder |
ID | fmpgoobcionmfneadjapdabmjfkmfekb |
官方URL | https://chromewebstore.google.com/detail/cypress-scenario-recorder/fmpgoobcionmfneadjapdabmjfkmfekb |
简介 | A Chrome extension for recording browser interaction and generating Cypress scripts |
文件大小 | 1.2 MB |
安装次数 | 8,453 |
当前版本 | 0.0.3 |
更新时间 | 2019-10-08 |
上架时间 | 2019-10-08 |
评分 | 4.87/5 共15次评分 |
开发者 | tavarez.oscar |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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 } } |