YouTube Windowed FullScreen

Watch videos on YouTube fullscreen within your browsers screen.

什么是YouTube Windowed FullScreen?

YouTube Windowed FullScreen是由navi.jador开发的Chrome扩展程序,该扩展的主要功能是“Watch videos on YouTube fullscreen within your browsers screen.”。

扩展截图

screenshot
screenshot
screenshot

下载YouTube Windowed FullScreen扩展crx文件

下载YouTube Windowed FullScreen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        UPDATES!! Auto-Toggle has now been implemented.
-There is now a OPTIONS page with 3 new options. To go there, either click the icon in your browser, or head to chrome://extensions and click on Details for Youtube Windowed FullScreen and click the "Extension Options". Please note some Shortcut Keys may not work correctly as YouTube, or your system may block them. Most keys should work if they are not reserved.

NOTE: PLEASE RESTART CHROME OR REFRESH YOUTUBE IF IT DOESNT WORK AFTER INSTALLING.
A simple and lightweight extension that adds an icon which allows the YouTube video player to fill the entire page, as a full browser player. This is especially useful for dual monitor users that may wish to continue working on other tasks with a large video playing.

In other words make your youtube fullscreen in your window!
FYI the shortcut key to toggle this without clicking is "`" on your keyboard!

Updates: 
1. Now works with the new youtube layout! 
2. Fixed compatibility issues with MagicActions and Adblock
3. Added shortcut key "`"
4. Added Options page at chrome://extensions, for 3 new settings (Auto-Toggle, Hide Full Screen and ShortCut Key)
5. Should now load more consistently.                    

扩展基本信息

名称 YouTube Windowed FullScreen YouTube Windowed FullScreen
ID gkkmiofalnjagdcjheckamobghglpdpm
官方URL https://chromewebstore.google.com/detail/youtube-windowed-fullscre/gkkmiofalnjagdcjheckamobghglpdpm
简介 Watch videos on YouTube fullscreen within your browsers screen.
文件大小 29.59 KB
安装次数 50,965
当前版本 3.8
更新时间 2022-07-20
上架时间 2019-05-01
评分 4.46/5 共293次评分
开发者 navi.jador
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Windowed FullScreen",
    "short_name": "YouTube FullScreen",
    "description": "Watch videos on YouTube fullscreen within your browsers screen.",
    "version": "3.8",
    "action": {
        "default_icon": "icon16.png"
    },
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "YouTube.fullbrowser.js"
            ],
            "css": [
                "YouTube.fullbrowser.css"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}