Testkit Recorder

Extension to record tests for Testkit

Testkit Recorderคืออะไร?

Testkit Recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://testkit.app และคุณลักษณะหลักของมันคือ "Extension to record tests for Testkit"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Testkit Recorder

ดาวน์โหลดไฟล์ส่วนขยาย Testkit Recorder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Create and run end-to-end tests for web applications without any code - all you need is this extension and an account with Testkit! Happy Testing! 🛠                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
คำอธิบาย Extension to record tests for Testkit
ขนาดไฟล์ 159 KB
จำนวนการติดตั้ง 25
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2022-12-08
วันที่เผยแพร่ 2022-10-15
ผู้พัฒนา https://testkit.app
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://testkit.app
URL หน้าช่วยเหลือ https://docs.testkit.app
URL หน้านโยบายความเป็นส่วนตัว https://www.iubenda.com/privacy-policy/46974219/full-legal
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Testkit Recorder",
    "description": "Extension to record tests for Testkit",
    "minimum_chrome_version": "92",
    "manifest_version": 3,
    "icons": {
        "16": "public\/icons\/icon-16.png",
        "32": "public\/icons\/icon-32.png",
        "48": "public\/icons\/icon-48.png",
        "128": "public\/icons\/icon-128.png"
    },
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "src\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/popup\/index.html",
        "default_icon": {
            "16": "public\/icons\/icon-16.png",
            "32": "public\/icons\/icon-32.png",
            "48": "public\/icons\/icon-48.png",
            "128": "public\/icons\/icon-128.png"
        }
    },
    "permissions": [
        "storage",
        "scripting",
        "webNavigation",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.testkit.app\/*"
            ],
            "js": [
                "src\/testkit\/index.js"
            ]
        }
    ],
    "version": "1.0.0"
}