RPA Automation Extension

RPA web recording and playback extension.

ما هو RPA Automation Extension؟

RPA Automation Extension هو إضافة Chrome تم تطويرها بواسطة xiaolei028، والميزة الرئيسية لها هي "RPA web recording and playback extension.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة RPA Automation Extension

قم بتنزيل ملفات الامتداد RPA Automation Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This is a plug-in for RPA  products.it helps to implement automation functions
1.Record browser operations (click,input get text,etc.)
2. Playback recording operation
3.Element capture (grab an element and its information from the curren DOM.)                    

معلومات أساسية عن التمديد

الاسم RPA Automation Extension RPA Automation Extension
ID deknijehbgjmcifokgebbchmhpenfnee
عنوان URL الرسمي https://chromewebstore.google.com/detail/rpa-automation-extension/deknijehbgjmcifokgebbchmhpenfnee
الوصف RPA web recording and playback extension.
حجم الملف 9.8 MB
عدد التثبيتات 219
النسخة الحالية 3.8.1.21
آخر تحديث 2023-08-21
تاريخ النشر 2021-10-27
المطور xiaolei028
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية http://rpa.paas.cmbchina.com/privacy
اللغات المدعومة zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "RPA web recording and playback extension.",
    "manifest_version": 2,
    "name": "RPA Automation Extension",
    "version": "3.8.1.21",
    "version_name": "3.8.1.21",
    "homepage_url": "http:\/\/rpa-community.paasuat.cmbchina.cn",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_menu16.png",
            "32": "icons\/icon_menu32.png",
            "64": "icons\/icon_menu64.png"
        },
        "default_title": "RPA Automation Extension"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus",
        "downloads",
        "webNavigation",
        "storage",
        "debugger",
        "",
        "nativeMessaging"
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "web_accessible_resources": [
        "icons\/icon128.png",
        "icons\/icon_light128.png",
        "assets\/prompt.js",
        "assets\/indicator.js",
        "assets\/highlight.css",
        "bootstrap.html",
        "indicator.html"
    ],
    "content_security_policy": "script-src 'self' 'sha256-W7QWmGne6B9hjKtOqoGmUFOPgpFcUo4Nr\/yyMqtgXcU=' 'sha256-4cgtnhJWZr038A2+gTGcUgQL2QsJao6c0AiTxYYo6c8=' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "assets\/vendor\/global.js",
                "assets\/vendor\/selenium-browserdetect.js",
                "assets\/atoms.js",
                "assets\/polyfills.js",
                "assets\/escape.js",
                "assets\/playback.js",
                "assets\/record.js"
            ],
            "match_about_blank": true,
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "assets\/background.js"
        ]
    }
}