Replay.qa

Screen Recording for Developers

什麼是Replay.qa?

Replay.qa是由http://replay.qa開發的Chrome擴展程式,該擴展的主要功能是“Screen Recording for Developers”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Replay.qa擴展crx文件

下載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.                    

擴展基本資訊

名稱 Replay.qa Replay.qa
ID lfbplepjndngblpfcodnbkjlampkcmcc
官方網址 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}