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
Eメール [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"
    ]
}