Record click bot

record clicks and replay

Cos'è Record click bot?

Record click bot è un'estensione di Chrome sviluppata da atallah-salah, e la sua funzione principale è "record clicks and replay".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Record click bot

Scarica i file di estensione Record click bot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Record click bot Record click bot
ID bmchoceeddggdndimacemddemmckhmpg
URL Ufficiale https://chromewebstore.google.com/detail/record-click-bot/bmchoceeddggdndimacemddemmckhmpg
Descrizione record clicks and replay
Dimensione del File 12.47 KB
Conteggio Installazioni 114
Versione Corrente 3.0
Ultimo Aggiornamento 2021-08-04
Data di Pubblicazione 2021-08-04
Valutazione 1.00/5 Totale 1 Valutazioni
Sviluppatore atallah-salah
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        ]
    }
}