Testkit Recorder

Extension to record tests for Testkit

Testkit Recorder là gì?

Testkit Recorder là một tiện ích mở rộng Chrome được phát triển bởi https://testkit.app, và tính năng chính của nó là "Extension to record tests for Testkit".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Testkit Recorder

Tải xuống các tệp mở rộng Testkit Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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! 🛠                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
URL Chính Thức https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
Mô tả Extension to record tests for Testkit
Kích Thước Tệp 159 KB
Số Lần Cài Đặt 25
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-12-08
Ngày Phát Hành 2022-10-15
Nhà Phát Triển https://testkit.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://testkit.app
URL Trang Trợ Giúp https://docs.testkit.app
URL Trang Chính Sách Bảo Mật https://www.iubenda.com/privacy-policy/46974219/full-legal
Ngôn Ngữ Được Hỗ Trợ 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"
}