openrpa

Support extension for OpenRPA

openrpa क्या है?

openrpa https://openiap.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Support extension for OpenRPA"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में openrpa एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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]"
        }
    }
}