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
公式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
Eメール [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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}