Alibaba Cloud RPA

Alibaba Cloud RPA for chrome ui automation

What is Alibaba Cloud RPA?

Alibaba Cloud RPA is a Chrome extension developed by alibaba_cloud_rpa, and its main feature is "Alibaba Cloud RPA for chrome ui automation".

Extension Screenshots

screenshot
screenshot

Download Alibaba Cloud RPA Extension CRX File

Download Alibaba Cloud RPA 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

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

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

Extension Basic Information

Name Alibaba Cloud RPA Alibaba Cloud RPA
ID jfdgbmdcialpkmjdbpmgchbinkjhacem
Official URL https://chromewebstore.google.com/detail/alibaba-cloud-rpa/jfdgbmdcialpkmjdbpmgchbinkjhacem
Description Alibaba Cloud RPA for chrome ui automation
File Size 9.9 KB
Installation Count 10,000
Current Version 1.13
Last Updated 2021-03-22
Publish Date 2021-03-22
Developer alibaba_cloud_rpa
Email [email protected]
Payment Type free
Extension Website https://www.aliyun.com/product/codestore
Supported Languages 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
}