Testkit Recorder

Extension to record tests for Testkit

什么是Testkit Recorder?

Testkit Recorder是由https://testkit.app开发的Chrome扩展程序,该扩展的主要功能是“Extension to record tests for Testkit”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Testkit Recorder扩展crx文件

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