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是由WinTask Dev Team開發的Chrome擴展程式,該擴展的主要功能是“WinTask component browser automation. This extension is used by WinTask software. It's not intended to be used as standalone!”。

擴展截圖

screenshot
screenshot
screenshot

下載WinTask Browser Automation擴展crx文件

下載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
官方網址 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
        }
    ]
}