OpenBots Web Automation

OpenBots extension for browser communication

OpenBots Web Automation란 무엇입니까?

OpenBots Web Automation은(는) openbotsdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OpenBots extension for browser communication"입니다.

확장 프로그램 스크린샷

screenshot

OpenBots Web Automation 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 OpenBots Web Automation OpenBots Web Automation
ID kkepankimcahnjamnimeijpplgjpmdpp
공식 URL https://chromewebstore.google.com/detail/openbots-web-automation/kkepankimcahnjamnimeijpplgjpmdpp
설명 OpenBots extension for browser communication
파일 크기 273 KB
설치 횟수 578
현재 버전 2.0.0
최근 업데이트 2023-02-13
출시 날짜 2021-05-12
평점 5.00/5 총 1 개의 평점
개발자 openbotsdev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://openbots.ai/
지원되는 언어 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
}