ELMA RPA Web Recognizer

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

What is ELMA RPA Web Recognizer?

ELMA RPA Web Recognizer is a Chrome extension developed by ELMA RPA, and its main feature is "A web extension to search control on web-page for ELMA RPA.".

Extension Screenshots

screenshot
screenshot

Download ELMA RPA Web Recognizer Extension CRX File

Download ELMA RPA Web Recognizer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        This extension help find UI elements on web pages.                    

Extension Basic Information

Name ELMA RPA Web Recognizer ELMA RPA Web Recognizer
ID gkcflhpdjejhljgdcbknpnihjkdeiboa
Official URL https://chromewebstore.google.com/detail/elma-rpa-web-recognizer/gkcflhpdjejhljgdcbknpnihjkdeiboa
Description A web extension to search control on web-page for ELMA RPA.
File Size 2.2 MB
Installation Count 60
Current Version 1.1.1
Last Updated 2022-03-01
Publish Date 2020-12-03
Developer ELMA RPA
Email [email protected]
Payment Type free
Extension Website https://elma365.com/ru/products/rpa/
Help Page URL https://elma365.com/ru/help/elma-rpa.html
Supported Languages 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
        }
    ]
}