Testkit Recorder

Extension to record tests for Testkit

Cos'è Testkit Recorder?

Testkit Recorder è un'estensione di Chrome sviluppata da https://testkit.app, e la sua funzione principale è "Extension to record tests for Testkit".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Testkit Recorder

Scarica i file di estensione Testkit Recorder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
URL Ufficiale https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
Descrizione Extension to record tests for Testkit
Dimensione del File 159 KB
Conteggio Installazioni 25
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-12-08
Data di Pubblicazione 2022-10-15
Sviluppatore https://testkit.app
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://testkit.app
URL della Pagina di Aiuto https://docs.testkit.app
URL della Pagina della Politica sulla Privacy https://www.iubenda.com/privacy-policy/46974219/full-legal
Lingue Supportate 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"
}