Autoclicker

Automatically click on element matching search criteria

Autoclickerとは何ですか?

Autoclickerはxela92によって開発されたChromeの拡張機能で、その主な機能は「Automatically click on element matching search criteria」です。

拡張機能のスクリーンショット

screenshot

Autoclicker拡張機能のCRXファイルをダウンロード

Autoclicker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Autoclicker Autoclicker
ID beilbfghjjeoajmbmlfbocjgbocmggap
公式URL https://chromewebstore.google.com/detail/autoclicker/beilbfghjjeoajmbmlfbocjgbocmggap
説明 Automatically click on element matching search criteria
ファイルサイズ 13.1 KB
インストール数 13,166
現在のバージョン 0.0.5
最終更新日 2022-11-15
公開日 2021-11-17
評価 2.74/5 合計 19 レビュー
開発者 xela92
Eメール [email protected]
支払い方法 free
対応言語 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"
    }
}