Brimstone

Record and play Brimstone pixel-perfect webpage automation tests

Wat is Brimstone?

Brimstone is een Chrome-extensie ontwikkeld door patchworksapp, en de belangrijkste functie is "Record and play Brimstone pixel-perfect webpage automation tests".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Brimstone

Download Brimstone-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Brimstone Brimstone
ID kjelahkpdbdmajbknafeighkihkcjacd
Officiële URL https://chromewebstore.google.com/detail/brimstone/kjelahkpdbdmajbknafeighkihkcjacd
Beschrijving Record and play Brimstone pixel-perfect webpage automation tests
Bestandsgrootte 1003 KB
Aantal Installaties 52
Huidige Versie 1.25.4
Laatst Bijgewerkt 2022-11-12
Publicatiedatum 2021-08-10
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar patchworksapp
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/zacfilan/brimstone-recorder/wiki
Help Pagina-URL https://github.com/zacfilan/brimstone-recorder/issues
URL van de Privacybeleid Pagina https://github.com/zacfilan/brimstone-recorder/wiki/Privacy-Policy
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}