Alibaba Cloud RPA

Alibaba Cloud RPA for chrome ui automation

Was ist Alibaba Cloud RPA?

Alibaba Cloud RPA ist eine Chrome-Erweiterung, die von alibaba_cloud_rpa entwickelt wurde, und ihr Hauptmerkmal ist "Alibaba Cloud RPA for chrome ui automation".

Erweiterungsscreenshots

screenshot
screenshot

Alibaba Cloud RPA-Erweiterungs-CRX-Datei herunterladen

Laden Sie Alibaba Cloud RPA-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        阿里云RPA机器人Chrome扩展,用于在Google Chrome浏览器中自动化执行Web应用程序

此扩展支持阿里云RPA 3.x至4.x版本。可记录和回放对Chrome浏览器中网页元素的操作,使用户能快速的自动执行任务。                    

Grundlegende Informationen zur Erweiterung

Name Alibaba Cloud RPA Alibaba Cloud RPA
ID jfdgbmdcialpkmjdbpmgchbinkjhacem
Offizielle URL https://chromewebstore.google.com/detail/alibaba-cloud-rpa/jfdgbmdcialpkmjdbpmgchbinkjhacem
Beschreibung Alibaba Cloud RPA for chrome ui automation
Dateigröße 9.9 KB
Installationsanzahl 10,000
Aktuelle Version 1.13
Letztes Update 2021-03-22
Veröffentlichungsdatum 2021-03-22
Entwickler alibaba_cloud_rpa
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.aliyun.com/product/codestore
Unterstützte Sprachen zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Alibaba Cloud RPA",
    "version": "1.13",
    "description": "Alibaba Cloud RPA for chrome ui automation",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "nativeMessaging",
        "tabs",
        "webNavigation",
        "cookies",
        "downloads",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "manifest_version": 2
}