Replay.qa
Screen Recording for Developers
Replay.qa란 무엇입니까?
Replay.qa은(는) http://replay.qa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Screen Recording for Developers"입니다.
확장 프로그램 스크린샷
Replay.qa 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Replay.qa is screen recording extension for engineering teams. It lets you easily share bugs with your team. Just click the extension and Replay.qa starts recording your screen, console, and network requests simultaneously. Share the link with someone on your team to let them watch back the session. Replay.qa lets you eliminate precious time trying to reproduce bugs. You'll never need to say, "it works on my computer" again. Features: Screen Recording - Replay.qa records all of your interactions on a webpage. Console Recording - Replay.qa will watch what is going on in the background to easily send logs to developers. Network Recording - Replay.qa captures network requests to show developer what happened Developers, QA Engineers, & Customer Success Teams: Easily capture & communicate bugs with engineering teams.
확장 프로그램 기본 정보
이름 | |
ID | lfbplepjndngblpfcodnbkjlampkcmcc |
공식 URL | https://chrome.google.com/webstore/detail/replayqa/lfbplepjndngblpfcodnbkjlampkcmcc |
설명 | Screen Recording for Developers |
파일 크기 | 972 KB |
설치 횟수 | 62 |
현재 버전 | 0.2.11 |
최근 업데이트 | 2022-03-14 |
출시 날짜 | 2021-03-28 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | http://replay.qa |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://replay.qa |
개인정보 보호 정책 페이지 URL | https://www.replay.qa/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Replay.qa", "version": "0.2.11", "manifest_version": 3, "description": "Screen Recording for Developers", "homepage_url": "http:\/\/replay.qa", "icons": { "16": "assets\/logo16.png", "48": "assets\/logo48.png", "128": "assets\/logo128.png" }, "background": { "service_worker": "background-service-worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": false } ], "action": { "default_title": "Start\/Stop Recording" }, "permissions": [ "tabs", "storage", "webNavigation", "contextMenus", "activeTab" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "inject.js", "inject.css" ], "matches": [ "*:\/\/*\/*" ] } ] } |