RapiseChromeExtension

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

Vad är RapiseChromeExtension?

RapiseChromeExtension är en Chrome-tillägg utvecklad av https://www.inflectra.com, och dess huvudfunktion är "This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner RapiseChromeExtension-förlängningens CRX-fil

Ladda ner RapiseChromeExtension-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

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

Grundläggande Information om Tillägg

Namn RapiseChromeExtension RapiseChromeExtension
ID ibngcigigdlhaekbaknfbpcbgilmhahc
Officiell webbadress https://chromewebstore.google.com/detail/rapisechromeextension/ibngcigigdlhaekbaknfbpcbgilmhahc
Beskrivning This extension allows the Rapise test automation platform to test web applications running in the Google Chrome browser.
Filstorlek 18.32 KB
Antal Installationer 1,179
Aktuell Version 3.0.11
Senast Uppdaterad 2022-06-23
Publiceringsdatum 2019-07-25
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare https://www.inflectra.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.inflectra.com/Rapise
Hjälpsida URL https://www.inflectra.com/Rapise/FAQs.aspx
URL till Sekretesspolicy Sidan http://www.inflectra.com/Company/Privacy-Policy.aspx
Stödda Språk 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
        }
    ]
}