WinTask Browser Automation

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

Was ist WinTask Browser Automation?

WinTask Browser Automation ist eine Chrome-Erweiterung, die von WinTask Dev Team entwickelt wurde, und ihr Hauptmerkmal ist "WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

WinTask Browser Automation-Erweiterungs-CRX-Datei herunterladen

Laden Sie WinTask Browser Automation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name WinTask Browser Automation WinTask Browser Automation
ID khaocdcbgnfgfoiplkbdaappfcdldgeb
Offizielle URL https://chromewebstore.google.com/detail/wintask-browser-automatio/khaocdcbgnfgfoiplkbdaappfcdldgeb
Beschreibung WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!
Dateigröße 112 KB
Installationsanzahl 110
Aktuelle Version 7.1.115
Letztes Update 2023-03-09
Veröffentlichungsdatum 2023-03-08
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler WinTask Dev Team
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://wintask.net
Hilfeseite URL https://wintask.net/contact-support/
URL der Datenschutzrichtlinien-Seite https://wintask.net/privacy-policy
Unterstützte Sprachen 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
        }
    ]
}