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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 } } |