Scandium Test Scenario Recorder

Turn your site interactions into actionable steps that can be repeated

¿Qué es Scandium Test Scenario Recorder?

Scandium Test Scenario Recorder es una extensión de Chrome desarrollada por Scandium Systems, y su función principal es "Turn your site interactions into actionable steps that can be repeated".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Scandium Test Scenario Recorder

Descarga archivos de extensión Scandium Test Scenario Recorder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Scandium helps testers, and non-technical product owners create test automation of the web apps by recording their site interactions and replaying the recorded steps.                    

Información Básica de la Extensión

Nombre Scandium Test Scenario Recorder Scandium Test Scenario Recorder
ID dokpohocljpghkmobklkccilgdiecgok
URL Oficial https://chromewebstore.google.com/detail/scandium-test-scenario-re/dokpohocljpghkmobklkccilgdiecgok
Descripción Turn your site interactions into actionable steps that can be repeated
Tamaño del Archivo 293 KB
Cantidad de Instalaciones 259
Versión Actual 0.0.58 private beta
Última Actualización 2024-03-06
Fecha de Publicación 2023-02-15
Calificación 5.00/5 Total de 12 Calificaciones
Desarrollador Scandium Systems
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://getscandium.com
URL de la Página de Política de Privacidad https://getscandium.com/scandium-privacy-policy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Scandium Test Scenario Recorder",
    "description": "Turn your site interactions into actionable steps that can be repeated",
    "version": "0.0.58",
    "version_name": "0.0.58 private beta",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "incognito": "spanning",
    "permissions": [
        "storage",
        "webNavigation",
        "scripting",
        "notifications"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "match_about_blank": true
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/playback.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true
        },
        {
            "matches": [
                "http:\/\/*.getscandium.com\/*",
                "https:\/\/*.getscandium.com\/*",
                "http:\/\/localhost\/*",
                "https:\/\/*.pages.dev\/*",
                "http:\/\/*.pages.dev\/*"
            ],
            "run_at": "document_start",
            "js": [
                "js\/activate.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "js\/hackDialogBoxes.js",
                "icons\/stop.png",
                "icons\/assertion.png",
                "icons\/mail.png",
                "icons\/sms.png",
                "icons\/move.png",
                "icons\/dropdown.png",
                "frames\/overlayFrame\/frame.html",
                "frames\/overlayFrame\/toolbar.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/*.getscandium.com\/*",
            "https:\/\/*.getscandium.com\/*",
            "http:\/\/localhost\/*",
            "http:\/\/127.0.0.1\/*",
            "https:\/\/*.draft-scandium-controller.pages.dev\/*",
            "http:\/\/*.draft-scandium-controller.pages.dev\/*",
            "https:\/\/draft-scandium-controller.pages.dev\/app\/*",
            "http:\/\/draft-scandium-controller.pages.dev\/*"
        ]
    }
}