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": "Twitter\/X Comment Bot", "version": "1.0.0", "description": "One click auto comment bot for Twitter\/X", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "storage", "commands" ], "host_permissions": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.x.com\/*", "https:\/\/twbot-pay.bigjpgai.workers.dev\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.x.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "action": { "default_popup": "popup.html", "default_icon": "icon.png" }, "commands": { "Toggle Autoscroll": { "description": "Pauses\/Resumes Autoscroll on the current page", "suggested_key": { "default": "Alt+O", "mac": "Alt+O" } }, "Toggle AutoComment": { "description": "Pauses\/Resumes AutoComment on the current page", "suggested_key": { "default": "Alt+P", "mac": "Alt+P" } }, "Toggle Theme": { "description": "Switches between light and dark theme", "suggested_key": { "default": "Alt+U", "mac": "Alt+U" } } } }