Testkit Recorder

Extension to record tests for Testkit

¿Qué es Testkit Recorder?

Testkit Recorder es una extensión de Chrome desarrollada por https://testkit.app, y su función principal es "Extension to record tests for Testkit".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Testkit Recorder

Descarga archivos de extensión Testkit 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

                        Create and run end-to-end tests for web applications without any code - all you need is this extension and an account with Testkit! Happy Testing! 🛠                    

Información Básica de la Extensión

Nombre Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
URL Oficial https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
Descripción Extension to record tests for Testkit
Tamaño del Archivo 159 KB
Cantidad de Instalaciones 25
Versión Actual 1.0.0
Última Actualización 2022-12-08
Fecha de Publicación 2022-10-15
Desarrollador https://testkit.app
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://testkit.app
URL de la Página de Ayuda https://docs.testkit.app
URL de la Página de Política de Privacidad https://www.iubenda.com/privacy-policy/46974219/full-legal
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Testkit Recorder",
    "description": "Extension to record tests for Testkit",
    "minimum_chrome_version": "92",
    "manifest_version": 3,
    "icons": {
        "16": "public\/icons\/icon-16.png",
        "32": "public\/icons\/icon-32.png",
        "48": "public\/icons\/icon-48.png",
        "128": "public\/icons\/icon-128.png"
    },
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "src\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/popup\/index.html",
        "default_icon": {
            "16": "public\/icons\/icon-16.png",
            "32": "public\/icons\/icon-32.png",
            "48": "public\/icons\/icon-48.png",
            "128": "public\/icons\/icon-128.png"
        }
    },
    "permissions": [
        "storage",
        "scripting",
        "webNavigation",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.testkit.app\/*"
            ],
            "js": [
                "src\/testkit\/index.js"
            ]
        }
    ],
    "version": "1.0.0"
}