AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

Τι είναι το AIFEX | AI For Exploratory testing;

Το AIFEX | AI For Exploratory testing είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον extension.aifex, και η κύρια λειτουργία του είναι "Help tester to collaborate on exploratory testing sessions".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης AIFEX | AI For Exploratory testing

Λήψη αρχείων επέκτασης AIFEX | AI For Exploratory testing σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AIFEX | AI For Exploratory testing AIFEX | AI For Exploratory testing
ID dmpbhianmdipngcgmkoijmaphnkhchaj
Επίσημο URL https://chromewebstore.google.com/detail/aifex-ai-for-exploratory/dmpbhianmdipngcgmkoijmaphnkhchaj
Περιγραφή Help tester to collaborate on exploratory testing sessions
Μέγεθος Αρχείου 951 KB
Αριθμός Εγκαταστάσεων 59
Τρέχουσα Έκδοση 0.13.0
Τελευταία Ενημέρωση 2022-10-28
Ημερομηνία Δημοσίευσης 2020-03-24
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής extension.aifex
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.aifex.fr/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.aifex.fr/documentation-website
Υποστηριζόμενες Γλώσσες 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"
    }
}