Ghost Inspector - Web Test Recorder

Ghost Inspector extension for recording automated website tests in your browser

Ghost Inspector - Web Test Recorder란 무엇입니까?

Ghost Inspector - Web Test Recorder은(는) https://ghostinspector.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ghost Inspector extension for recording automated website tests in your browser"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Ghost Inspector - Web Test Recorder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ghost Inspector is an automated browser testing service that allow you to run automated tests on your websites and web applications to ensure that they are functioning properly.

Our web test recorder allows you to record yourself performing actions on your website within your browser, then sync them to the Ghost Inspector service and run them continuously as a regression test.

You can record them on your staging server and execute them through our API when your code changes — or record them on your live site and automatically run them at a set interval to continuously check for issues.

You will need to sign up for a Ghost Inspector account to use our recording tool.                    

확장 프로그램 기본 정보

이름 Ghost Inspector - Web Test Recorder Ghost Inspector - Web Test Recorder
ID aicdiabnghjnejfempeinmnphllefehc
공식 URL https://chromewebstore.google.com/detail/ghost-inspector-web-test/aicdiabnghjnejfempeinmnphllefehc
설명 Ghost Inspector extension for recording automated website tests in your browser
파일 크기 648 KB
설치 횟수 20,000
현재 버전 7.0.3
최근 업데이트 2023-10-26
출시 날짜 2020-05-27
평점 4.32/5 총 28 개의 평점
개발자 https://ghostinspector.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://ghostinspector.com/
도움말 페이지 URL https://docs.ghostinspector.com/test-editor/
개인정보 보호 정책 페이지 URL https://ghostinspector.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ghost Inspector - Web Test Recorder",
    "short_name": "Ghost Inspector",
    "author": "Ghost Inspector",
    "description": "Ghost Inspector extension for recording automated website tests in your browser",
    "homepage_url": "https:\/\/ghostinspector.com",
    "version": "7.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/toolbar-default-16.png",
            "32": "images\/toolbar-default-32.png"
        },
        "default_title": "Ghost Inspector",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "content.css",
                "toastr.css"
            ],
            "js": [
                "vendor.js",
                "content.js"
            ]
        }
    ],
    "minimum_chrome_version": "92",
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        ""
    ]
}