Automator

Automate browser actions easily

Что такое Automator?

Automator - это расширение Chrome, разработанное root.dev.urandom, и его основная функция - "Automate browser actions easily".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Automator

Скачайте файлы расширений Automator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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!                    

Основная информация о расширении

Название Automator Automator
ID bommlebcdbhpnlmjdokpdcongnpokkjc
Официальный URL https://chromewebstore.google.com/detail/automator/bommlebcdbhpnlmjdokpdcongnpokkjc
Описание Automate browser actions easily
Размер файла 69.53 KB
Количество установок 227
Текущая Версия 1.0.1
Последнее Обновление 2020-12-01
Дата публикации 2020-08-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик root.dev.urandom
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    ]
}