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
官方網址 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"
}