openrpa

Support extension for OpenRPA

openrpa란 무엇입니까?

openrpa은(는) https://openiap.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Support extension for OpenRPA"입니다.

확장 프로그램 스크린샷

screenshot

openrpa 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        OpenRPA is the first completely free, open source, enterprise grade Robotic Process Automation platform.
This plugin is needed in order to automate chrome with OpenRPA, the addon does nothing without a running instance of OpenRPA running at the same time.
The addon needs very broad permissions in order to record and replay sequences.
This addon does not collect and send any information, you can how ever collect information from webpages using the OpenRPA software.
For more info and free download visit out site, or forge us on github and help contribute.                    

확장 프로그램 기본 정보

이름 openrpa openrpa
ID hpnihnhlcnfejboocnckgchjdofeaphe
공식 URL https://chromewebstore.google.com/detail/openrpa/hpnihnhlcnfejboocnckgchjdofeaphe
설명 Support extension for OpenRPA
파일 크기 451 KB
설치 횟수 5,385
현재 버전 1.0.0.5
최근 업데이트 2022-11-28
출시 날짜 2020-04-26
평점 5.00/5 총 3 개의 평점
개발자 https://openiap.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://openiap.io
도움말 페이지 URL https://github.com/open-rpa/openrpa/wiki
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "openrpa",
    "version": "1.0.0.5",
    "description": "Support extension for OpenRPA",
    "permissions": [
        "nativeMessaging",
        "webNavigation",
        "downloads",
        "debugger",
        "scripting",
        "activeTab",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "16": "images\/OpenRPA16.png",
        "48": "images\/OpenRPA48.png",
        "128": "images\/OpenRPA128.png"
    },
    "action": [],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}