Testkit Recorder

Extension to record tests for Testkit

What is Testkit Recorder?

Testkit Recorder is a Chrome extension developed by https://testkit.app, and its main feature is "Extension to record tests for Testkit".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Testkit Recorder Extension CRX File

Download Testkit Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
Official URL https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
Description Extension to record tests for Testkit
File Size 159 KB
Installation Count 25
Current Version 1.0.0
Last Updated 2022-12-08
Publish Date 2022-10-15
Developer https://testkit.app
Email [email protected]
Payment Type free
Extension Website https://testkit.app
Help Page URL https://docs.testkit.app
Privacy Policy Page URL https://www.iubenda.com/privacy-policy/46974219/full-legal
Supported Languages 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"
}