Replay.qa
Screen Recording for Developers
Replay.qa क्या है?
Replay.qa http://replay.qa द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Screen Recording for Developers"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Replay.qa एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [ "*:\/\/*\/*" ] } ] } |