Data is synced from the Chrome Web Store. View the official store page for the most current information.
This extension is no longer available on the Chrome Web Store. We noticed it was gone on Jul 20, 2025.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Progress Bar Customizer", "version": "1.1", "description": "Customize the progress bar and replace scrubber button with user image", "permissions": [ "storage", "activeTab" ], "host_permissions": [ "*:\/\/www.youtube.com\/*" ], "icons": { "128": "icon.png" }, "action": { "default_popup": "popup.html", "default_title": "Change scrubber image" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ], "run_at": "document_idle" } ] }