Testkit Recorder

Extension to record tests for Testkit

Co to jest Testkit Recorder?

Testkit Recorder to rozszerzenie Chrome opracowane przez https://testkit.app, a jego główną funkcją jest „Extension to record tests for Testkit”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Testkit Recorder

Pobierz pliki rozszerzeń Testkit Recorder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
Oficjalny URL https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
Opis Extension to record tests for Testkit
Rozmiar pliku 159 KB
Liczba instalacji 25
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-12-08
Data Publikacji 2022-10-15
Deweloper https://testkit.app
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://testkit.app
Adres URL Strony Pomocy https://docs.testkit.app
Adres URL Strony Polityki Prywatności https://www.iubenda.com/privacy-policy/46974219/full-legal
Obsługiwane Języki 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"
}