ELMA RPA Web Recognizer

A web extension to search control on web-page for ELMA RPA.

ELMA RPA Web Recognizer란 무엇입니까?

ELMA RPA Web Recognizer은(는) ELMA RPA에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A web extension to search control on web-page for ELMA RPA."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

ELMA RPA Web Recognizer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension help find UI elements on web pages.                    

확장 프로그램 기본 정보

이름 ELMA RPA Web Recognizer ELMA RPA Web Recognizer
ID gkcflhpdjejhljgdcbknpnihjkdeiboa
공식 URL https://chromewebstore.google.com/detail/elma-rpa-web-recognizer/gkcflhpdjejhljgdcbknpnihjkdeiboa
설명 A web extension to search control on web-page for ELMA RPA.
파일 크기 2.2 MB
설치 횟수 60
현재 버전 1.1.1
최근 업데이트 2022-03-01
출시 날짜 2020-12-03
개발자 ELMA RPA
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://elma365.com/ru/products/rpa/
도움말 페이지 URL https://elma365.com/ru/help/elma-rpa.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ELMA RPA Web Recognizer",
    "description": "A web extension to search control on web-page for ELMA RPA.",
    "version": "1.1.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*",
        "file:\/\/*",
        "clipboardWrite",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' ; object-src 'self';",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "js\/browser-polyfill.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "web-recognize"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "css\/mouse.css"
            ],
            "js": [
                "js\/browser-polyfill.js",
                "js\/content-script.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}