Record click bot

record clicks and replay

什么是Record click bot?

Record click bot是由atallah-salah开发的Chrome扩展程序,该扩展的主要功能是“record clicks and replay”。

扩展截图

screenshot

下载Record click bot扩展crx文件

下载Record click bot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is a test chrome-extension for POC.

Record clicks on websites and replay theses clicks on specific play time

Note: this version is test only and may could not work on all cases                    

扩展基本信息

名称 Record click bot Record click bot
ID bmchoceeddggdndimacemddemmckhmpg
官方URL https://chromewebstore.google.com/detail/record-click-bot/bmchoceeddggdndimacemddemmckhmpg
简介 record clicks and replay
文件大小 12.47 KB
安装次数 114
当前版本 3.0
更新时间 2021-08-04
上架时间 2021-08-04
评分 1.00/5 共1次评分
开发者 atallah-salah
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Record click bot",
    "description": "record clicks and replay",
    "version": "3.0",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_cion": "icon_128.png",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}