Auto Clicker

Just click automation

O que é Auto Clicker?

Auto Clicker é uma extensão do Chrome desenvolvida por https://tesilio.github.io, e sua principal característica é "Just click automation".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Auto Clicker

Baixe arquivos de extensão Auto Clicker 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

                        This extension is a straightforward auto clicker that's useful when you need to perform repetitive clicking tasks. It's easily controlled with keyboard shortcuts, making it convenient to use.
--------------------------------------------------------------------
To start: Press Ctrl and Comma (,) together.
To stop: Press Ctrl and Period (.) together.
To start with intervals: Press Ctrl, Alt (or Option), and Comma (,) together.
That's all there is to it! 😎
--------------------------------------------------------------------
Please note, this extension is designed for typical web browsing situations. It may not function properly in Flash or SVG-based games.                    

Informações Básicas da Extensão

Nome Auto Clicker Auto Clicker
ID cpedeojecpbkcomgcolphimkjdnikbck
URL Oficial https://chromewebstore.google.com/detail/auto-clicker/cpedeojecpbkcomgcolphimkjdnikbck
Descrição Just click automation
Tamanho do Arquivo 15.58 KB
Contagem de Instalações 286,776
Versão Atual 1.5.0
Última Atualização 2024-02-04
Data de Publicação 2020-05-21
Classificação 2.26/5 Total de 608 Avaliações
Desenvolvedor https://tesilio.github.io
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Clicker",
    "description": "Just click automation",
    "version": "1.5.0",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Ctrl + ,(Comma): Start auto click\nCtrl + Alt + ,(Comma): Start auto click with interval\nCtrl + .(Period): Stop auto click"
    },
    "icons": {
        "16": "\/img\/click.png",
        "32": "\/img\/click.png",
        "48": "\/img\/click.png",
        "128": "\/img\/click.png"
    },
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/common.js",
                "js\/AutoClicker.js",
                "js\/content.js"
            ]
        }
    ]
}