Autoclicker

Automatically click on element matching search criteria

Qu'est-ce que Autoclicker ?

Autoclicker est une extension Chrome développée par xela92, et sa fonction principale est "Automatically click on element matching search criteria".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Autoclicker

Téléchargez les fichiers d'extension Autoclicker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Autoclicker Autoclicker
ID beilbfghjjeoajmbmlfbocjgbocmggap
URL Officiel https://chromewebstore.google.com/detail/autoclicker/beilbfghjjeoajmbmlfbocjgbocmggap
Description Automatically click on element matching search criteria
Taille du Fichier 13.1 KB
Nombre d'Installations 13,166
Version Actuelle 0.0.5
Dernière Mise à Jour 2022-11-15
Date de Publication 2021-11-17
Évaluation 2.74/5 Total 19 Évaluations
Développeur xela92
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}