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
官方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
        }
    ]
}