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": [ "*:\/\/*\/*" ] } ] } |