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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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
}
} | |