Auto Click Scheduler - FoxyClick

Just right click on any element and set a timer. Easy, fast and accurate.

Vad är Auto Click Scheduler - FoxyClick?

Auto Click Scheduler - FoxyClick är en Chrome-tillägg utvecklad av Polte Games, och dess huvudfunktion är "Just right click on any element and set a timer. Easy, fast and accurate.".

Tilläggsskärmbilder

screenshot

Ladda ner Auto Click Scheduler - FoxyClick-förlängningens CRX-fil

Ladda ner Auto Click Scheduler - FoxyClick-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        FoxyClick will automatically click on any element on a page on a given time.

# Intelligent and precise algorithm: be the first in line in reservations, bookings, etc.
# Easy to use: just right click on any element, set the timer and leave the page open.
# No ads or registrations.
# Beta features: timer accuracy in milliseconds and repeated clicks with adjustable delay                    

Grundläggande Information om Tillägg

Namn Auto Click Scheduler - FoxyClick Auto Click Scheduler - FoxyClick
ID jjjlikhinlnggfgmjhcnhibkmcjcmiej
Officiell webbadress https://chromewebstore.google.com/detail/auto-click-scheduler-foxy/jjjlikhinlnggfgmjhcnhibkmcjcmiej
Beskrivning Just right click on any element and set a timer. Easy, fast and accurate.
Filstorlek 68.72 KB
Antal Installationer 5,085
Aktuell Version 1.3.4
Senast Uppdaterad 2022-08-25
Publiceringsdatum 2021-10-02
Betyg 3.92/5 Totalt 37 Betyg
Utvecklare Polte Games
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://poltegames.com
Hjälpsida URL https://poltegames.com
URL till Sekretesspolicy Sidan https://poltegames.com/privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Click Scheduler - FoxyClick",
    "description": "Just right click on any element and set a timer. Easy, fast and accurate.",
    "version": "1.3.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "service-worker-right-click-menu.js"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-logic.js",
                "content-ext-awn.js",
                "content-ext-tingle.js",
                "content-ext-timepicker.js",
                "content-worker.js"
            ],
            "css": [
                "content-ext-awn.css",
                "content-ext-tingle.css",
                "content-ext-timepicker.css",
                "content-logic.css"
            ],
            "all_frames": true,
            "match_about_blank": false
        }
    ],
    "action": {
        "default_icon": "icon16.png",
        "default_title": "FoxyClick",
        "default_popup": "popup-credits.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/icon128.png",
                "\/popup.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}