OpenBots Web Automation

OpenBots extension for browser communication

OpenBots Web Automation là gì?

OpenBots Web Automation là một tiện ích mở rộng Chrome được phát triển bởi openbotsdev, và tính năng chính của nó là "OpenBots extension for browser communication".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng OpenBots Web Automation

Tải xuống các tệp mở rộng OpenBots Web Automation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension helps OpenBots Studio users to communicate with chrome through native messaging for performing web automations. 
When the chrome application is launched, this extension starts/communicates with chrome native server (built in c#) to allow the client application (OpenBots Studio) to send/recieve messages to/from this extension via chrome native server. OpenBots studio requests the extension to perform following actions on web pages:
1) Click Web Element
2) Set Text
3) Get Text
4) Get HTML Table
5) Get HTML Attributes (id, name, class, xpath)
6) Scroll To Web Element
7) Set/Get DropDown Value                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên OpenBots Web Automation OpenBots Web Automation
ID kkepankimcahnjamnimeijpplgjpmdpp
URL Chính Thức https://chromewebstore.google.com/detail/openbots-web-automation/kkepankimcahnjamnimeijpplgjpmdpp
Mô tả OpenBots extension for browser communication
Kích Thước Tệp 273 KB
Số Lần Cài Đặt 578
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2023-02-13
Ngày Phát Hành 2021-05-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển openbotsdev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://openbots.ai/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OpenBots Web Automation",
    "description": "OpenBots extension for browser communication",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "jquery.min.js",
                "contentScript.js",
                "ContentLibrary.js",
                "ContentListener.js",
                "jquery-ui.js",
                "contentScript170.js"
            ]
        }
    ],
    "background": {
        "service_worker": "main.js"
    },
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "nativeMessaging",
        "activeTab",
        "tabs",
        "webNavigation",
        "downloads",
        "downloads.shelf"
    ],
    "icons": {
        "16": "studio-icon-16.png",
        "48": "studio-icon-48.png",
        "128": "studio-icon-128.png"
    },
    "action": {
        "default_icon": "icon.png"
    },
    "manifest_version": 3
}