Replay.qa
Screen Recording for Developers
Replay.qaคืออะไร?
Replay.qa เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://replay.qa และคุณลักษณะหลักของมันคือ "Screen Recording for Developers"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Replay.qa
ดาวน์โหลดไฟล์ส่วนขยาย Replay.qa ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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": [ "*:\/\/*\/*" ] } ] } |