WinTask Browser Automation

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

Vad är WinTask Browser Automation?

WinTask Browser Automation är en Chrome-tillägg utvecklad av WinTask Dev Team, och dess huvudfunktion är "WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner WinTask Browser Automation-förlängningens CRX-fil

Ladda ner WinTask Browser Automation-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

                        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!                    

Grundläggande Information om Tillägg

Namn WinTask Browser Automation WinTask Browser Automation
ID khaocdcbgnfgfoiplkbdaappfcdldgeb
Officiell webbadress https://chromewebstore.google.com/detail/wintask-browser-automatio/khaocdcbgnfgfoiplkbdaappfcdldgeb
Beskrivning WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!
Filstorlek 112 KB
Antal Installationer 110
Aktuell Version 7.1.115
Senast Uppdaterad 2023-03-09
Publiceringsdatum 2023-03-08
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare WinTask Dev Team
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://wintask.net
Hjälpsida URL https://wintask.net/contact-support/
URL till Sekretesspolicy Sidan https://wintask.net/privacy-policy
Stödda Språk 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
        }
    ]
}