Auto Clicker

Just click automation

Что такое Auto Clicker?

Auto Clicker - это расширение Chrome, разработанное https://tesilio.github.io, и его основная функция - "Just click automation".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Auto Clicker

Скачайте файлы расширений Auto Clicker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Auto Clicker Auto Clicker
ID cpedeojecpbkcomgcolphimkjdnikbck
Официальный URL https://chromewebstore.google.com/detail/auto-clicker/cpedeojecpbkcomgcolphimkjdnikbck
Описание Just click automation
Размер файла 15.58 KB
Количество установок 286,776
Текущая Версия 1.5.0
Последнее Обновление 2024-02-04
Дата публикации 2020-05-21
Рейтинг 2.26/5 Всего 608 оценок
Разработчик https://tesilio.github.io
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
            ]
        }
    ]
}