OpenBots Web Automation

OpenBots extension for browser communication

OpenBots Web Automation क्या है?

OpenBots Web Automation openbotsdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "OpenBots extension for browser communication"।

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

screenshot

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

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