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ファイルをダウンロード

Brimstone拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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": [
                ""
            ]
        }
    ]
}