AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

What is AIFEX | AI For Exploratory testing?

AIFEX | AI For Exploratory testing is a Chrome extension developed by extension.aifex, and its main feature is "Help tester to collaborate on exploratory testing sessions".

Extension Screenshots

screenshot

Download AIFEX | AI For Exploratory testing Extension CRX File

Download AIFEX | AI For Exploratory testing extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
Official URL https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Description Help tester to collaborate on exploratory testing sessions
File Size 951 KB
Installation Count 59
Current Version 0.13.0
Last Updated 2022-10-28
Publish Date 2020-03-24
Rating 5.00/5 Total 1 Ratings
Developer extension.aifex
Email [email protected]
Payment Type free
Extension Website https://www.aifex.fr/
Help Page URL https://www.aifex.fr/documentation-website
Supported Languages 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"
    }
}