WinTask Browser Automation

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

Что такое WinTask Browser Automation?

WinTask Browser Automation - это расширение Chrome, разработанное WinTask Dev Team, и его основная функция - "WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения WinTask Browser Automation

Скачайте файлы расширений WinTask Browser Automation в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название WinTask Browser Automation WinTask Browser Automation
ID khaocdcbgnfgfoiplkbdaappfcdldgeb
Официальный URL https://chromewebstore.google.com/detail/wintask-browser-automatio/khaocdcbgnfgfoiplkbdaappfcdldgeb
Описание WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!
Размер файла 112 KB
Количество установок 110
Текущая Версия 7.1.115
Последнее Обновление 2023-03-09
Дата публикации 2023-03-08
Рейтинг 5.00/5 Всего 1 оценок
Разработчик WinTask Dev Team
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://wintask.net
URL страницы помощи https://wintask.net/contact-support/
URL страницы политики конфиденциальности https://wintask.net/privacy-policy
Поддерживаемые языки 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
        }
    ]
}