arachne.uipath.chrome.browser.bridge.app

arachne uipath chrome browser bridge application

Co to jest arachne.uipath.chrome.browser.bridge.app?

arachne.uipath.chrome.browser.bridge.app to rozszerzenie Chrome opracowane przez hyundai.capital.rpa, a jego główną funkcją jest „arachne uipath chrome browser bridge application”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia arachne.uipath.chrome.browser.bridge.app

Pobierz pliki rozszerzeń arachne.uipath.chrome.browser.bridge.app 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

                        arachne-uipath chrome browser bridge (hereinafter referred to as the bridge) makes the chrome browser enable to communicate with an external application by hosting native messaging pipeline. as the chrome extension only takes the part of scripting and returing results, please make sure that it does not provide any functionality without the host application which is also known as "native application" described in the official document for chrome extension.

updated on 2022-04-18
* modified : do connect only on startup
* modified : add a connection retrial condition (host forbidden error)

updated on 2022-04-26
* modified : update version 0.1 to 0.2 in mainfest
* modified : change chrome extension logo
# as I forgot modifying version in the manifest json file, 
# the modified source on 2022-04-18 did not published properly.
# so modified source will be applied on this publish and need to be watched about calling host application twice issue (BUG FOUND AT VERSION 0.1)                    

Podstawowe informacje o rozszerzeniu

Nazwa arachne.uipath.chrome.browser.bridge.app arachne.uipath.chrome.browser.bridge.app
ID dcgmnehcnnncofekjjoikncbikojekje
Oficjalny URL https://chromewebstore.google.com/detail/arachneuipathchromebrowse/dcgmnehcnnncofekjjoikncbikojekje
Opis arachne uipath chrome browser bridge application
Rozmiar pliku 25.34 KB
Liczba instalacji 131
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2022-04-27
Data Publikacji 2022-04-16
Deweloper hyundai.capital.rpa
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/hyundai-capital-rpa/arachne-uipath-chrome-browser-bridge
Adres URL Strony Pomocy https://github.com/hyundai-capital-rpa/arachne-uipath-chrome-browser-bridge
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "arachne.uipath.chrome.browser.bridge.app",
    "description": "arachne uipath chrome browser bridge application",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "16": "arachne_logo16x16.png",
        "48": "arachne_logo48x48.png",
        "128": "arachne_logo128x128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "nativeMessaging"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": []
}