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
官方網址 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": [
                ""
            ]
        }
    ]
}