Autoclicker

Automatically click on element matching search criteria

Wat is Autoclicker?

Autoclicker is een Chrome-extensie ontwikkeld door xela92, en de belangrijkste functie is "Automatically click on element matching search criteria".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Autoclicker

Download Autoclicker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Autoclicker aims to help you automate repetitive clicks on an element in the webpage.
For instance, did you ever had to deal with a page that continuously, every 20 seconds, asks you to press a confirm button, that maybe appears and disappears for a certain time? This is the extension you're looking for to be able to avoid that!

#NEW IN 0.0.5
- add option to persist clicking over page reload
- minor bug fixes                    

Basisinformatie over de Extensie

Naam Autoclicker Autoclicker
ID beilbfghjjeoajmbmlfbocjgbocmggap
Officiële URL https://chromewebstore.google.com/detail/autoclicker/beilbfghjjeoajmbmlfbocjgbocmggap
Beschrijving Automatically click on element matching search criteria
Bestandsgrootte 13.1 KB
Aantal Installaties 13,166
Huidige Versie 0.0.5
Laatst Bijgewerkt 2022-11-15
Publicatiedatum 2021-11-17
Beoordeling 2.74/5 Totaal 19 Beoordelingen
Ontwikkelaar xela92
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Autoclicker",
    "description": "Automatically click on element matching search criteria",
    "icons": {
        "16": "icons\/autoclicker-16.png",
        "32": "icons\/autoclicker-32.png",
        "48": "icons\/autoclicker-48.png",
        "128": "icons\/autoclicker-128.png"
    },
    "version": "0.0.5",
    "author": "xela92",
    "permissions": [
        "storage",
        "activeTab",
        "scripting",
        "webNavigation"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/clicker.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "action": {
        "default_popup": "html\/popup.html"
    }
}