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
官方URL 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"
    }
}