Automator

Automate browser actions easily

Cos'è Automator?

Automator è un'estensione di Chrome sviluppata da root.dev.urandom, e la sua funzione principale è "Automate browser actions easily".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Automator

Scarica i file di estensione Automator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Extension for easy web applications testing.

Like Selenium or WebDriver it allows to interact with data on loaded pages using CLI scripts or CI processes.

Usage is very simple - install this extension, register on our website, setup your unique token and then you can do what you want!

Important notice: We active develop this extension right now. So, if you want - we are open for your contribution!                    

Informazioni di Base sull'Estensione

Nome Automator Automator
ID bommlebcdbhpnlmjdokpdcongnpokkjc
URL Ufficiale https://chromewebstore.google.com/detail/automator/bommlebcdbhpnlmjdokpdcongnpokkjc
Descrizione Automate browser actions easily
Dimensione del File 69.53 KB
Conteggio Installazioni 227
Versione Corrente 1.0.1
Ultimo Aggiornamento 2020-12-01
Data di Pubblicazione 2020-08-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore root.dev.urandom
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automator",
    "short_name": "automator-browser-extension",
    "description": "Automate browser actions easily",
    "author": "awesome-development",
    "version": "1.0.1",
    "icons": {
        "16": "assets\/img\/icons\/16x16.png",
        "48": "assets\/img\/icons\/48x48.png",
        "128": "assets\/img\/icons\/128x128.png"
    },
    "browser_action": {
        "default_icon": "assets\/img\/icons\/48x48.png",
        "default_popup": "popup\/popup.html",
        "default_title": "Browser automator"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "js": [
                "inject.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "minimum_chrome_version": "49.0",
    "permissions": [
        "*:\/\/*\/*",
        "storage",
        "tabs"
    ]
}