Automator

Automate browser actions easily

Qu'est-ce que Automator ?

Automator est une extension Chrome développée par root.dev.urandom, et sa fonction principale est "Automate browser actions easily".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Automator

Téléchargez les fichiers d'extension Automator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Automator Automator
ID bommlebcdbhpnlmjdokpdcongnpokkjc
URL Officiel https://chromewebstore.google.com/detail/automator/bommlebcdbhpnlmjdokpdcongnpokkjc
Description Automate browser actions easily
Taille du Fichier 69.53 KB
Nombre d'Installations 227
Version Actuelle 1.0.1
Dernière Mise à Jour 2020-12-01
Date de Publication 2020-08-20
Évaluation 5.00/5 Total 1 Évaluations
Développeur root.dev.urandom
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}