Simple YouTube Windowed Fullscreen

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

什麼是Simple YouTube Windowed Fullscreen?

Simple YouTube Windowed Fullscreen是由https://srnyx.com開發的Chrome擴展程式,該擴展的主要功能是“Open YouTube videos in fullscreen in it's own window (windowed fullscreen)”。

擴展截圖

screenshot

下載Simple YouTube Windowed Fullscreen擴展crx文件

下載Simple YouTube Windowed Fullscreen擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Simple YouTube Windowed Fullscreen Simple YouTube Windowed Fullscreen
ID pbihmiiillncegkbfnfkmlcjkpagehgh
官方網址 https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh
簡介 Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
檔案大小 21.2 KB
安裝次數 20
目前版本 1.0.0
更新時間 2023-08-25
上架時間 2023-03-29
評分 4.00/5 共 3 次評分
開發者 https://srnyx.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://srnyx.com
說明頁面URL https://srnyx.com/discord
支援的語言 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"
    }
}