Simple YouTube Windowed Fullscreen

Open YouTube videos in fullscreen in it's own window (windowed fullscreen)

What is Simple YouTube Windowed Fullscreen?

Simple YouTube Windowed Fullscreen is a Chrome extension developed by https://srnyx.com, and its main feature is "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)".

Extension Screenshots

screenshot

Download Simple YouTube Windowed Fullscreen Extension CRX File

Download Simple YouTube Windowed 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

                        Simple YouTube Windowed Fullscreen is an extremely simple extension (only 12 lines of code) that allows you to open YouTube videos in their own pop-up windows.

This is great if you're watching a long video or movie and want to multi-task. Or, you just like being able to see your taskbar and to easily manage the YouTube video's display.

This was made in a few hours (had to learn a bit of JavaScript and Chrome API), but I'd be happy to add any new features and to fix any bugs!

GitHub (source code): https://simple-youtube-windowed-fullscreen.srnyx.com                    

Extension Basic Information

Name Simple YouTube Windowed Fullscreen Simple YouTube Windowed Fullscreen
ID pbihmiiillncegkbfnfkmlcjkpagehgh
Official URL https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh
Description Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
File Size 21.2 KB
Installation Count 20
Current Version 1.0.0
Last Updated 2023-08-25
Publish Date 2023-03-29
Rating 4.00/5 Total 3 Ratings
Developer https://srnyx.com
Email [email protected]
Payment Type free
Extension Website https://srnyx.com
Help Page URL https://srnyx.com/discord
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.0",
    "name": "Simple YouTube Windowed Fullscreen",
    "description": "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)",
    "author": "[email protected]",
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "80": "icons\/icon80.png",
            "96": "icons\/icon96.png",
            "112": "icons\/icon112.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Open video in windowed fullscreen"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    }
}