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": "hyde \u2014 hide the YouTube video player controls", "version": "1.2", "description": "Press Ctrl+M to hide or show the YouTube video player controls.", "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "background": { "service_worker": "src\/background.js" }, "action": { "default_icon": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" } }, "commands": { "hide": { "suggested_key": { "default": "Ctrl+M" }, "description": "hide\/show controls" } }, "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/watch?*", "https:\/\/*.youtube.com\/watch?*" ], "js": [ "src\/hide.js", "src\/show.js" ] } ], "permissions": [ "activeTab", "scripting" ] }