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
Eメール [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"
}