Replay.qa
Screen Recording for Developers
Replay.qa là gì?
Replay.qa là một tiện ích mở rộng Chrome được phát triển bởi http://replay.qa, và tính năng chính của nó là "Screen Recording for Developers".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Replay.qa
Tải xuống các tệp mở rộng Replay.qa dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lfbplepjndngblpfcodnbkjlampkcmcc |
URL Chính Thức | https://chrome.google.com/webstore/detail/replayqa/lfbplepjndngblpfcodnbkjlampkcmcc |
Mô tả | Screen Recording for Developers |
Kích Thước Tệp | 972 KB |
Số Lần Cài Đặt | 62 |
Phiên Bản Hiện Tại | 0.2.11 |
Cập Nhật Lần Cuối | 2022-03-14 |
Ngày Phát Hành | 2021-03-28 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | http://replay.qa |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://replay.qa |
URL Trang Chính Sách Bảo Mật | https://www.replay.qa/privacy-policy |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*:\/\/*\/*" ] } ] } |