Record click bot

record clicks and replay

What is Record click bot?

Record click bot is a Chrome extension developed by atallah-salah, and its main feature is "record clicks and replay".

Extension Screenshots

screenshot

Download Record click bot Extension CRX File

Download Record click bot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Record click bot Record click bot
ID bmchoceeddggdndimacemddemmckhmpg
Official URL https://chromewebstore.google.com/detail/record-click-bot/bmchoceeddggdndimacemddemmckhmpg
Description record clicks and replay
File Size 12.47 KB
Installation Count 114
Current Version 3.0
Last Updated 2021-08-04
Publish Date 2021-08-04
Rating 1.00/5 Total 1 Ratings
Developer atallah-salah
Email [email protected]
Payment Type free
Supported Languages 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"
        ]
    }
}