Testkit Recorder

Extension to record tests for Testkit

Hvad er Testkit Recorder?

Testkit Recorder er en Chrome-udvidelse udviklet af https://testkit.app, og dens hovedfunktion er "Extension to record tests for Testkit".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Testkit Recorder-udvidelses-CRX-fil

Download Testkit Recorder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
Officiel URL https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
Beskrivelse Extension to record tests for Testkit
Filstørrelse 159 KB
Antal Installationer 25
Nuværende Version 1.0.0
Senest Opdateret 2022-12-08
Udgivelsesdato 2022-10-15
Udvikler https://testkit.app
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://testkit.app
Hjælpeside-URL https://docs.testkit.app
URL til Fortrolighedspolitik Side https://www.iubenda.com/privacy-policy/46974219/full-legal
Understøttede Sprog 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"
}