Automator

Automate browser actions easily

什么是Automator?

Automator是由root.dev.urandom开发的Chrome扩展程序,该扩展的主要功能是“Automate browser actions easily”。

扩展截图

screenshot

下载Automator扩展crx文件

下载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"
    ]
}