QA Recorder Beta

Allows you to record any site's QA session

QA Recorder Beta란 무엇입니까?

QA Recorder Beta은(는) https://www.qa-recorder.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to record any site's QA session"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

QA Recorder Beta 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        QA RECORDER
★★★★★ 

QA Recorder is a smart tool for super-fast Quality Assurance testing and recording. 
With QA Recorder you can simply recording your browser sessions, marking bugs, and sharing your recordings as a step-to-reproduce:

✅ Record browser sessions and pinpoint bugs. 
✅ Share findings with just one click. 
✅ Recreate bugs in seconds. 

With QA Recorder you could:
🎥 Record browser sessions and identify bugs without breaking a sweat
🐞 Click to mark bugs and problem areas.
📌 Complete tasks without leaving your browser tab.
📢 Share insights and reduce the workload for your entire team Export a detailed report of your interactions alongside the video. 
🚀 Publish your findings to Slack, Jira or any other platform with just one click (coming soon). 
🔄 Recreate bugs with 100% accuracy every single time.
🕒 Never waste your time searching for bugs again.
🕵 Track mouse clicks, scrolls, inputs, animations, JS errors, exceptions and any other interaction.

☆ YES, YOU GET A RECORDING OF ALL PAGE EVENTS.
☆ NO NEW TABS. 
☆ ONE CLICK TO SEND.
☆ ONE STEP TO REPRODUCE.

==========================
About QA Recorder Project: 
==========================

We wanted to work faster without working harder! 
- QA testers often find themselves struggling against the clock, juggling multiple open windows and tabs. 
- Web developers then spend HOURS trying to recreate a tiny bug, sometimes without success. 
- The QA Recorder development team knows how it feels. We were determined to cut the hours spent finding and recreating bugs. 

QA recorder is an simple tool that can make a dramatic impact on the lives of QA testers and web developers.                    

확장 프로그램 기본 정보

이름 QA Recorder Beta QA Recorder Beta
ID gggolepmnplalkgjhcbogagfoedkhagl
공식 URL https://chrome.google.com/webstore/detail/qa-recorder-beta/gggolepmnplalkgjhcbogagfoedkhagl
설명 Allows you to record any site's QA session
파일 크기 163 KB
설치 횟수 254
현재 버전 0.5.1
최근 업데이트 2020-05-13
출시 날짜 2020-05-13
평점 4.00/5 총 10 개의 평점
개발자 https://www.qa-recorder.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.qa-recorder.com
도움말 페이지 URL https://www.qa-recorder.com/contact/
개인정보 보호 정책 페이지 URL https://www.qa-recorder.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_projectName__",
    "short_name": "__MSG_shortProjectName__",
    "version": "0.5.1",
    "manifest_version": 2,
    "description": "__MSG_projectDescription__",
    "icons": {
        "128": "images\/qa-recorder-logo-128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.qa-recorder.com\/*"
    ],
    "content_security_policy": "script-src 'self' https:\/\/cdn.walkme.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/pages.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.qa-recorder.com\/*",
                "http:\/\/localhost.qa-recorder.com\/*"
            ],
            "js": [
                "js\/pages\/admin.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/qa-recorder-logo-128.png",
        "default_popup": "html\/recorder.html"
    },
    "web_accessible_resources": [
        "css\/pages-init.css",
        "html\/pages-init.html",
        "js\/actions\/*.js"
    ],
    "background": {
        "scripts": [
            "js\/config.js",
            "js\/bg\/tabs.js",
            "js\/bg\/auth.js",
            "js\/bg\/api.js",
            "js\/bg\/popup.js",
            "js\/bg\/actions.js",
            "js\/bg\/csp.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "default_locale": "en",
    "commands": {
        "qa-recorder--recording-toggle": {
            "description": "Start\/Stop recording the current page",
            "suggested_key": {
                "default": "Ctrl+Shift+R",
                "mac": "MacCtrl+Shift+R"
            }
        },
        "qa-recorder--recording-note": {
            "description": "Create a new Note while recording",
            "suggested_key": {
                "default": "Alt+Shift+N",
                "mac": "MacCtrl+Shift+N"
            }
        }
    },
    "homepage_url": "https:\/\/www.qa-recorder.com\/",
    "offline_enabled": false
}