Brimstone

Record and play Brimstone pixel-perfect webpage automation tests

Brimstone là gì?

Brimstone là một tiện ích mở rộng Chrome được phát triển bởi patchworksapp, và tính năng chính của nó là "Record and play Brimstone pixel-perfect webpage automation tests".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Brimstone

Tải xuống các tệp mở rộng Brimstone dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Brimstone Brimstone
ID kjelahkpdbdmajbknafeighkihkcjacd
URL Chính Thức https://chromewebstore.google.com/detail/brimstone/kjelahkpdbdmajbknafeighkihkcjacd
Mô tả Record and play Brimstone pixel-perfect webpage automation tests
Kích Thước Tệp 1003 KB
Số Lần Cài Đặt 52
Phiên Bản Hiện Tại 1.25.4
Cập Nhật Lần Cuối 2022-11-12
Ngày Phát Hành 2021-08-10
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển patchworksapp
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/zacfilan/brimstone-recorder/wiki
URL Trang Trợ Giúp https://github.com/zacfilan/brimstone-recorder/issues
URL Trang Chính Sách Bảo Mật https://github.com/zacfilan/brimstone-recorder/wiki/Privacy-Policy
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}