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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}