Windowed Fullscreen for Videos

Adds a windowed fullscreen button to all videos.

What is Windowed Fullscreen for Videos?

Windowed Fullscreen for Videos is a Chrome extension developed by https://napalighost.com, and its main feature is "Adds a windowed fullscreen button to all videos.".

Extension Screenshots

screenshot
screenshot

Download Windowed Fullscreen for Videos Extension CRX File

Download Windowed Fullscreen for Videos 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

                        Works with most websites that include videos through the HTML5 

Extension Basic Information

Name Windowed Fullscreen for Videos Windowed Fullscreen for Videos
ID bkcghongfpfngpdobomhdehbffibkjlh
Official URL https://chromewebstore.google.com/detail/windowed-fullscreen-for-v/bkcghongfpfngpdobomhdehbffibkjlh
Description Adds a windowed fullscreen button to all videos.
File Size 16.39 KB
Installation Count 849
Current Version 1.0.0
Last Updated 2022-06-28
Publish Date 2022-06-28
Rating 4.83/5 Total 6 Ratings
Developer https://napalighost.com
Email [email protected]
Payment Type free
Extension Website https://www.napalighost.com/windowed-fullscreen-for-videos
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Windowed Fullscreen for Videos",
    "version": "1.0.0",
    "description": "Adds a windowed fullscreen button to all videos.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "css": [
                "style.css"
            ],
            "js": [
                "init.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "permissions": [
        "storage"
    ]
}