Cypress Scenario Recorder
A Chrome extension for recording browser interaction and generating Cypress scripts
Cypress Scenario Recorderคืออะไร?
Cypress Scenario Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tavarez.oscar และคุณลักษณะหลักของมันคือ "A Chrome extension for recording browser interaction and generating Cypress scripts"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cypress Scenario Recorder
ดาวน์โหลดไฟล์ส่วนขยาย 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 } } |