Testkit Recorder

Extension to record tests for Testkit

Vad är Testkit Recorder?

Testkit Recorder är en Chrome-tillägg utvecklad av https://testkit.app, och dess huvudfunktion är "Extension to record tests for Testkit".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Testkit Recorder-förlängningens CRX-fil

Ladda ner Testkit Recorder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Testkit Recorder Testkit Recorder
ID phaajcbcjngbpokjamkngfcbfgndfapl
Officiell webbadress https://chromewebstore.google.com/detail/testkit-recorder/phaajcbcjngbpokjamkngfcbfgndfapl
Beskrivning Extension to record tests for Testkit
Filstorlek 159 KB
Antal Installationer 25
Aktuell Version 1.0.0
Senast Uppdaterad 2022-12-08
Publiceringsdatum 2022-10-15
Utvecklare https://testkit.app
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://testkit.app
Hjälpsida URL https://docs.testkit.app
URL till Sekretesspolicy Sidan https://www.iubenda.com/privacy-policy/46974219/full-legal
Stödda Språk 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"
}