Brimstone

Record and play Brimstone pixel-perfect webpage automation tests

O que é Brimstone?

Brimstone é uma extensão do Chrome desenvolvida por patchworksapp, e sua principal característica é "Record and play Brimstone pixel-perfect webpage automation tests".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Brimstone

Baixe arquivos de extensão Brimstone no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Brimstone Brimstone
ID kjelahkpdbdmajbknafeighkihkcjacd
URL Oficial https://chromewebstore.google.com/detail/brimstone/kjelahkpdbdmajbknafeighkihkcjacd
Descrição Record and play Brimstone pixel-perfect webpage automation tests
Tamanho do Arquivo 1003 KB
Contagem de Instalações 52
Versão Atual 1.25.4
Última Atualização 2022-11-12
Data de Publicação 2021-08-10
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor patchworksapp
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/zacfilan/brimstone-recorder/wiki
URL da Página de Ajuda https://github.com/zacfilan/brimstone-recorder/issues
URL da Página de Política de Privacidade https://github.com/zacfilan/brimstone-recorder/wiki/Privacy-Policy
Idiomas Suportados 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": [
                ""
            ]
        }
    ]
}