QAide Test Step Recorder

QAide test step recorder.

QAide Test Step Recorder란 무엇입니까?

QAide Test Step Recorder은(는) https://qaide.co.uk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "QAide test step recorder."입니다.

확장 프로그램 스크린샷

screenshot

QAide Test Step Recorder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        QAide Test Step Recorder provides a way for you to trace your steps on websites. This tool will allow you to retrace your steps and if you work with a development team you can provide them with the JSON file making it easier to know what exactly happened.

We do not store any data, the steps are stored in your browser and you can detail any of the steps you wish. This is to ensure your data is secure between you and your browser.

Journey: 

When you have been on a website and clicked around, maybe filled in some forms you can open the extension to see what's being recorded.

To see the dashboard you have to open the Pop Up and if you have steps available you can click the Vew All Step Details link in the top-right.

Once the dashboard is displayed you will see more details around the steps you've taken divided by the domain and you can collapse/expand the domain sections to make it easier to read.
For each step you can copy the JSON to your clipboard or in the top-right corner you can export all steps to a JSON file if you want to use the data elsewhere.                    

확장 프로그램 기본 정보

이름 QAide Test Step Recorder QAide Test Step Recorder
ID jbdogiflkjhhfeehchmeekahhmeakcll
공식 URL https://chrome.google.com/webstore/detail/jbdogiflkjhhfeehchmeekahhmeakcll
설명 QAide test step recorder.
파일 크기 207 KB
설치 횟수 125
현재 버전 1.2
최근 업데이트 2021-01-16
출시 날짜 2020-09-04
평점 4.75/5 총 4 개의 평점
개발자 https://qaide.co.uk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://qaide.co.uk/
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.2",
    "name": "QAide Test Step Recorder",
    "description": "QAide test step recorder.",
    "icons": {
        "128": "resources\/img\/128x128.png",
        "48": "resources\/img\/48x48.png",
        "16": "resources\/img\/16x16.png"
    },
    "browser_action": {
        "default_icon": "resources\/img\/16x16.png",
        "default_popup": "popup.html",
        "default_title": "QAide Test Steps"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "resources\/contentScript.js"
            ],
            "exclude_matches": [
                "*:\/\/linkedin.com\/*",
                "*:\/\/mail.google.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/trello.com\/*",
                "*:\/\/outlook.office365.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/use.fontawesome.com\/releases\/v5.15.1\/css\/all.css; object-src 'self'"
}