Brimstone

Record and play Brimstone pixel-perfect webpage automation tests

Brimstone란 무엇입니까?

Brimstone은(는) patchworksapp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record and play Brimstone pixel-perfect webpage automation tests"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Brimstone 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Brimstone is a scriptless (codeless), complete test automation tool, for web applications. No coding required! 

* Recording a test is as easy as using your application. 
* Save test suites (and runs) to local disk or your database.
* Test playback is extremely fast. Every visual pixel difference between what was originally recorded, and any later playback is caught. Brimstone is a visually perfect (pixel accurate) do-no-harm tester. 
* Performance metrics of your app (latency/memory) are captured for every user step you record in a test. Catch memory leaks! Catch degrading performance!                    

확장 프로그램 기본 정보

이름 Brimstone Brimstone
ID kjelahkpdbdmajbknafeighkihkcjacd
공식 URL https://chromewebstore.google.com/detail/brimstone/kjelahkpdbdmajbknafeighkihkcjacd
설명 Record and play Brimstone pixel-perfect webpage automation tests
파일 크기 1003 KB
설치 횟수 52
현재 버전 1.25.4
최근 업데이트 2022-11-12
출시 날짜 2021-08-10
평점 5.00/5 총 2 개의 평점
개발자 patchworksapp
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/zacfilan/brimstone-recorder/wiki
도움말 페이지 URL https://github.com/zacfilan/brimstone-recorder/issues
개인정보 보호 정책 페이지 URL https://github.com/zacfilan/brimstone-recorder/wiki/Privacy-Policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Brimstone",
    "description": "Record and play Brimstone pixel-perfect webpage automation tests",
    "version": "1.25.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "webNavigation",
        "debugger"
    ],
    "host_permissions": [
        "*:\/\/*\/",
        ""
    ],
    "action": {
        "default_icon": {
            "32": "images\/grey_b_32.png"
        },
        "default_title": "Brimstone is inactive.\nClick to open window."
    },
    "icons": {
        "128": "images\/orange_b_128.png"
    },
    "options_page": "options_ui.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "recorder.js"
            ],
            "run_at": "document_start",
            "match_about_blank": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}