AIFEX | AI For Exploratory testing

Help tester to collaborate on exploratory testing sessions

什麼是AIFEX | AI For Exploratory testing?

AIFEX | AI For Exploratory testing是由extension.aifex開發的Chrome擴展程式,該擴展的主要功能是“Help tester to collaborate on exploratory testing sessions”。

擴展截圖

screenshot

下載AIFEX | AI For Exploratory testing擴展crx文件

下載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
官方網址 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"
    }
}