Autoclicker

Automatically click on element matching search criteria

Autoclicker क्या है?

Autoclicker xela92 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically click on element matching search criteria"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Autoclicker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    }
}