Automa

An extension for automating your browser by connecting blocks

Automa là gì?

Automa là một tiện ích mở rộng Chrome được phát triển bởi https://automa.site, và tính năng chính của nó là "An extension for automating your browser by connecting blocks".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Automa

Tải xuống các tệp mở rộng Automa dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        From auto-fill forms, doing a repetitive task, taking a screenshot, to scraping data of the website, it's up to you what you want to do with this extension. And you also can schedule when the automation will execute.

If you have a question or want to report a bug, feel free to open an issue in automa GitHub repository.

GitHub: https://github.com/AutomaApp/automa                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Automa Automa
ID infppggnoaenmfagbfknfkancpbljcca
URL Chính Thức https://chromewebstore.google.com/detail/automa/infppggnoaenmfagbfknfkancpbljcca
Mô tả An extension for automating your browser by connecting blocks
Kích Thước Tệp 2.12 MB
Số Lần Cài Đặt 112,965
Phiên Bản Hiện Tại 1.28.27
Cập Nhật Lần Cuối 2024-02-06
Ngày Phát Hành 2021-11-01
Đánh Giá 4.59/5 Tổng số 135 Đánh Giá
Nhà Phát Triển https://automa.site
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://automa.site/
URL Trang Trợ Giúp https://github.com/automaapp/automa/issues
URL Trang Chính Sách Bảo Mật https://www.automa.site/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "An extension for automating your browser by connecting blocks",
    "version": "1.28.27",
    "manifest_version": 2,
    "name": "Automa",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "icons": {
        "128": "icon-128.png"
    },
    "commands": {
        "open-dashboard": {
            "suggested_key": {
                "default": "Alt+A",
                "mac": "Alt+A"
            },
            "description": "Open the dashboard"
        },
        "element-picker": {
            "suggested_key": {
                "default": "Alt+P",
                "mac": "Alt+P"
            },
            "description": "Open element picker"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "all_frames": true
        },
        {
            "matches": [
                "http:\/\/localhost\/*",
                "*:\/\/*.automa.site\/*",
                "*:\/\/automa.vercel.app\/*"
            ],
            "js": [
                "webService.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "optional_permissions": [
        "clipboardRead",
        "downloads",
        "contextMenus",
        "notifications",
        "cookies"
    ],
    "permissions": [
        "tabs",
        "proxy",
        "alarms",
        "storage",
        "debugger",
        "",
        "webNavigation",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "\/elementSelector.css",
        "\/Inter-roman-latin.var.woff2",
        "\/icon-128.png",
        "\/locales\/*",
        "elementSelector.bundle.js"
    ],
    "sandbox": {
        "pages": [
            "\/sandbox.html"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com\/ https:\/\/accounts.google.com\/ https:\/\/www.googleapis.com https:\/\/ajax.googleapis.com; object-src 'self'"
}