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": "Simple Autoscroll", "version": "1.2.1", "permissions": [ "storage" ], "short_name": "simple auto scroll", "description": "Simple Autoscroll: Effortlessly navigate webpages with automatic scrolling.", "icons": { "128": "images\/icon.png" }, "action": { "default_icon": { "32": "images\/icon.png" }, "default_popup": "popup.html", "default_title": "Auto Scroll Chrome" }, "author": "Johny Code", "background": { "service_worker": "background.js" }, "commands": { "Toggle Autoscroll": { "description": "Pauses\/Resumes Autoscroll on the current page", "suggested_key": { "default": "Alt+S", "mac": "Alt+S" } } }, "content_scripts": [ { "js": [ "contentScript.js" ], "matches": [ "<all_urls>" ], "run_at": "document_end" } ] }