AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

¿Qué es AIFEX | AI For Exploratory testing?

AIFEX | AI For Exploratory testing es una extensión de Chrome desarrollada por extension.aifex, y su función principal es "Help tester to collaborate on exploratory testing sessions".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AIFEX | AI For Exploratory testing

Descarga archivos de extensión AIFEX | AI For Exploratory testing 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

                        AIFEX (AI For Exploratory testing) helps testers to collaborate during exploratory test sessions by advising them to perform interactions that have rarely or never been explored. The main advantage is that it promotes diversity of tests.

AIFEX consists of two main elements:
* A chrome plugin that listens to all interactions performed by testers, transmits them to the server, requests predictions for future interactions and visually highlights the expected interaction.
*  A central server that stores all interactions performed by testers, integrates them into an AI and returns predictions calculated by the AI indicating future interactions that should be performed by testers.                    

Información Básica de la Extensión

Nombre AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
URL Oficial https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Descripción Help tester to collaborate on exploratory testing sessions
Tamaño del Archivo 951 KB
Cantidad de Instalaciones 59
Versión Actual 0.13.0
Última Actualización 2022-10-28
Fecha de Publicación 2020-03-24
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador extension.aifex
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.aifex.fr/
URL de la Página de Ayuda https://www.aifex.fr/documentation-website
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AIFEX | AI For Exploratory testing",
    "version": "0.13.0",
    "description": "Help tester to collaborate on exploratory testing sessions",
    "permissions": [
        "activeTab",
        "webNavigation",
        "tabs",
        "desktopCapture",
        "scripting",
        "storage"
    ],
    "host_permissions": [
        "",
        "*:\/\/*\/*"
    ],
    "icons": {
        "128": "images\/aifex_icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "tabScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_title": "AIFEX",
        "default_popup": "popup\/index.html"
    },
    "background": {
        "service_worker": "index.js"
    }
}