YouTube Toggle Fullscreen
Click to go fullscreen (+ HD); click again to exit fullscreen.
What is YouTube Toggle Fullscreen?
YouTube Toggle Fullscreen is a Chrome extension developed by Rob W, and its main feature is "Click to go fullscreen (+ HD); click again to exit fullscreen.".
Extension Screenshots
Download YouTube Toggle Fullscreen Extension CRX File
Download YouTube Toggle Fullscreen extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
September 2017: Updated for new layout. Adds an extension button that expands YouTube videos to the full window and activates HD quality (optional, see options page). The functionality can also be activated with a keyboard shortcut (see options page). The extension is efficient, does not require unnecessary permissions and works directly on YouTube with minimal changes (so no surprises!).
Extension Basic Information
Name | YouTube Toggle Fullscreen |
ID | gjlgjoioabomkkoefbhophippopiiafa |
Official URL | https://chromewebstore.google.com/detail/youtube-toggle-fullscreen/gjlgjoioabomkkoefbhophippopiiafa |
Description | Click to go fullscreen (+ HD); click again to exit fullscreen. |
File Size | 18.55 KB |
Installation Count | 198 |
Current Version | 1.3 |
Last Updated | 2017-09-12 |
Publish Date | 2017-09-12 |
Rating | 4.67/5 Total 6 Ratings |
Developer | Rob W |
[email protected] | |
Payment Type | free |
Extension Website | https://robwu.nl |
Privacy Policy Page URL | https://robwu.nl/privacy/cws |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Toggle Fullscreen", "description": "Click to go fullscreen (+ HD); click again to exit fullscreen.", "version": "1.3", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "run_at": "document_idle", "js": [ "contentscript.js" ], "css": [ "youtube-fullscreen.css" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "permissions": [ "storage", "*:\/\/www.youtube.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_title": "Toggle fullscreen" }, "commands": { "toggle-fullscreen": { "description": "Toggle fullscreen on YouTube" } }, "minimum_chrome_version": "46", "options_page": "options.html" } |