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", "name": "YouTube Control Center", "description": "YouTube popup pause and resume as well as no buffer, HD quality, wide screen, ...", "version": "0.7.0", "manifest_version": 3, "permissions": [ "storage", "cookies" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "data\/page.js", "data\/controls\/isolated.js", "data\/quality\/isolated.js", "data\/next_track.js", "data\/css.js" ], "css": [ "data\/no_buffer.css" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "data\/no_buffer.js", "data\/controls\/main.js", "data\/quality\/main.js" ], "run_at": "document_start", "all_frames": false, "world": "MAIN" } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" }, "action": { "default_title": "YouTube Control Center\n\n-> Opens YouTube when no player is detected.\n-> Displays the control popup when there is at least one YouTube player" }, "homepage_url": "https:\/\/add0n.com\/control-center.html", "commands": { "_execute_action": [], "pause": { "description": "Stat the player" }, "stop": { "description": "Stop the player" }, "play": { "description": "Pause the player" }, "next": { "description": "Move to the next track" }, "previous": { "description": "Move to the previous track" } } }