Automa

An extension for automating your browser by connecting blocks

Hvad er Automa?

Automa er en Chrome-udvidelse udviklet af https://automa.site, og dens hovedfunktion er "An extension for automating your browser by connecting blocks".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Automa-udvidelses-CRX-fil

Download Automa-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Automa Automa
ID infppggnoaenmfagbfknfkancpbljcca
Officiel URL https://chromewebstore.google.com/detail/automa/infppggnoaenmfagbfknfkancpbljcca
Beskrivelse An extension for automating your browser by connecting blocks
Filstørrelse 2.12 MB
Antal Installationer 112,965
Nuværende Version 1.28.27
Senest Opdateret 2024-02-06
Udgivelsesdato 2021-11-01
Bedømmelse 4.59/5 Samlet 135 Bedømmelser
Udvikler https://automa.site
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://automa.site/
Hjælpeside-URL https://github.com/automaapp/automa/issues
URL til Fortrolighedspolitik Side https://www.automa.site/privacy
Understøttede Sprog 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'"
}