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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة سياسة الخصوصية | 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": [ "*:\/\/*\/*" ] } ] } |