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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://docs.testkit.app
عنوان صفحة سياسة الخصوصية 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"
}