Record click bot

record clicks and replay

Hvad er Record click bot?

Record click bot er en Chrome-udvidelse udviklet af atallah-salah, og dens hovedfunktion er "record clicks and replay".

Udvidelsesskærmbilleder

screenshot

Download Record click bot-udvidelses-CRX-fil

Download Record click bot-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Record click bot Record click bot
ID bmchoceeddggdndimacemddemmckhmpg
Officiel URL https://chromewebstore.google.com/detail/record-click-bot/bmchoceeddggdndimacemddemmckhmpg
Beskrivelse record clicks and replay
Filstørrelse 12.47 KB
Antal Installationer 114
Nuværende Version 3.0
Senest Opdateret 2021-08-04
Udgivelsesdato 2021-08-04
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler atallah-salah
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        ]
    }
}