Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Auto Clicker", "version": "1.5", "description": "An auto clicker triggered by a hotkey with configurable CPS and element selector.", "permissions": [ "storage", "activeTab", "scripting" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/icons\/icon_16.png", "19": ".\/icons\/icon_19.png", "48": ".\/icons\/icon_48.png", "128": ".\/icons\/icon_128.png", "256": ".\/icons\/icon_256.png", "512": ".\/icons\/icon_512.png" } }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ] } ], "commands": { "trigger_auto_clicker": { "suggested_key": { "default": "Ctrl+Shift+Y" }, "description": "Toggle Auto Clicker" } } }