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": "YouTube Bar Customizer", "version": "1.2", "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" } ] }