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