WinTask Browser Automation

WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!

Co to jest WinTask Browser Automation?

WinTask Browser Automation to rozszerzenie Chrome opracowane przez WinTask Dev Team, a jego główną funkcją jest „WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia WinTask Browser Automation

Pobierz pliki rozszerzeń WinTask Browser Automation 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

                        WinTask component browser automation.
This extension is to be used in conjugation with WinTask software, it allows the WinTask software to communicate with the browser in order to execute multiple actions like writing and clicking html elements.
It's not intended to be used as standalone extension!                    

Podstawowe informacje o rozszerzeniu

Nazwa WinTask Browser Automation WinTask Browser Automation
ID khaocdcbgnfgfoiplkbdaappfcdldgeb
Oficjalny URL https://chromewebstore.google.com/detail/wintask-browser-automatio/khaocdcbgnfgfoiplkbdaappfcdldgeb
Opis WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!
Rozmiar pliku 112 KB
Liczba instalacji 110
Aktualna Wersja 7.1.115
Ostatnia Aktualizacja 2023-03-09
Data Publikacji 2023-03-08
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper WinTask Dev Team
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://wintask.net
Adres URL Strony Pomocy https://wintask.net/contact-support/
Adres URL Strony Polityki Prywatności https://wintask.net/privacy-policy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WinTask Browser Automation",
    "version": "7.1.115",
    "description": "WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!",
    "icons": {
        "16": "wintask_16.png",
        "48": "wintask_48.png",
        "128": "wintask_128.png",
        "256": "wintask_256.png"
    },
    "permissions": [
        "nativeMessaging",
        "tabs",
        "cookies",
        "webNavigation",
        "webRequest",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "BackgroundService.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "WTConst.js",
                "WTTrace.js",
                "WTDocList.js",
                "WTCustomId.js",
                "WTTools.js",
                "WTTagAttrs.js",
                "WTDescriptor.js",
                "WTRecorder.js"
            ],
            "all_frames": true
        }
    ]
}