Windowed Fullscreen for Videos

Adds a windowed fullscreen button to all videos.

什么是Windowed Fullscreen for Videos?

Windowed Fullscreen for Videos是由https://napalighost.com开发的Chrome扩展程序,该扩展的主要功能是“Adds a windowed fullscreen button to all videos.”。

扩展截图

screenshot
screenshot

下载Windowed Fullscreen for Videos扩展crx文件

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

扩展使用说明

                        Works with most websites that include videos through the HTML5 

扩展基本信息

名称 Windowed Fullscreen for Videos Windowed Fullscreen for Videos
ID bkcghongfpfngpdobomhdehbffibkjlh
官方URL https://chromewebstore.google.com/detail/windowed-fullscreen-for-v/bkcghongfpfngpdobomhdehbffibkjlh
简介 Adds a windowed fullscreen button to all videos.
文件大小 16.39 KB
安装次数 849
当前版本 1.0.0
更新时间 2022-06-28
上架时间 2022-06-28
评分 4.83/5 共6次评分
开发者 https://napalighost.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.napalighost.com/windowed-fullscreen-for-videos
支持的语言 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"
    ]
}