Autoclicker

Automatically click on element matching search criteria

O que é Autoclicker?

Autoclicker é uma extensão do Chrome desenvolvida por xela92, e sua principal característica é "Automatically click on element matching search criteria".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Autoclicker

Baixe arquivos de extensão Autoclicker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Autoclicker Autoclicker
ID beilbfghjjeoajmbmlfbocjgbocmggap
URL Oficial https://chromewebstore.google.com/detail/autoclicker/beilbfghjjeoajmbmlfbocjgbocmggap
Descrição Automatically click on element matching search criteria
Tamanho do Arquivo 13.1 KB
Contagem de Instalações 13,166
Versão Atual 0.0.5
Última Atualização 2022-11-15
Data de Publicação 2021-11-17
Classificação 2.74/5 Total de 19 Avaliações
Desenvolvedor xela92
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}