Brimstone

Record and play Brimstone pixel-perfect webpage automation tests

Brimstone क्या है?

Brimstone patchworksapp द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record and play Brimstone pixel-perfect webpage automation tests"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Brimstone एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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": [
                ""
            ]
        }
    ]
}