RapiseChromeExtension

This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.

Cos'è RapiseChromeExtension?

RapiseChromeExtension è un'estensione di Chrome sviluppata da https://www.inflectra.com, e la sua funzione principale è "This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione RapiseChromeExtension

Scarica i file di estensione RapiseChromeExtension 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

                        This extension allows the Rapise test automation system to record, learn and playback automated tests using the Google Chrome browser.                    

Informazioni di Base sull'Estensione

Nome RapiseChromeExtension RapiseChromeExtension
ID ibngcigigdlhaekbaknfbpcbgilmhahc
URL Ufficiale https://chromewebstore.google.com/detail/rapisechromeextension/ibngcigigdlhaekbaknfbpcbgilmhahc
Descrizione This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.
Dimensione del File 18.32 KB
Conteggio Installazioni 1,179
Versione Corrente 3.0.11
Ultimo Aggiornamento 2022-06-23
Data di Pubblicazione 2019-07-25
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore https://www.inflectra.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.inflectra.com/Rapise
URL della Pagina di Aiuto https://www.inflectra.com/Rapise/FAQs.aspx
URL della Pagina della Politica sulla Privacy http://www.inflectra.com/Company/Privacy-Policy.aspx
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RapiseChromeExtension",
    "short_name": "Rapise Test Suite Support for Chrome.",
    "description": "This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.",
    "version": "3.0.11",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "nativeMessaging",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "options_page": "options.html",
    "icons": {
        "16": "icons\/16.png",
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "injectedJS.js"
            ],
            "match_about_blank": true
        }
    ]
}