YouTube Popout Player

Provides simple ways to open any YouTube video or playlist in a configurable popout window

YouTube Popout Player là gì?

YouTube Popout Player là một tiện ích mở rộng Chrome được phát triển bởi Ryan Thaut, và tính năng chính của nó là "Provides simple ways to open any YouTube video or playlist in a configurable popout window".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Popout Player

Tải xuống các tệp mở rộng YouTube Popout Player dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Overview

This extension provides a simple way to open any YouTube video (including videos embedded in other sites/pages) in a "popout" window which you can freely position and resize.

Usage

When viewing any YouTube video, whether directly YouTube, or embedded on any other website, you can either:
- Right-click on the video and click the "Popout Player" option (at the bottom of the menu that is displayed)
- Click the popout player icon (a square with a smaller square coming out of the top right corner), which can be found in the lower right corner of the video (by the settings and fullscreen icons)
- Use the keyboard shortcuts (default CTRL + Up Arrow )
- Right-click on any link/thumbnail to a YouTube video or playlist, and use the "Open Video in Popout Player" or "Open Playlist in Popout Player" menu options. This works on any website as long as the link goes to YouTube.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTube Popout Player YouTube Popout Player
ID kmfikkopdhmbdbkndkamabamlkkgkpod
URL Chính Thức https://chromewebstore.google.com/detail/youtube-popout-player/kmfikkopdhmbdbkndkamabamlkkgkpod
Mô tả Provides simple ways to open any YouTube video or playlist in a configurable popout window
Kích Thước Tệp 184 KB
Số Lần Cài Đặt 54,685
Phiên Bản Hiện Tại 4.4.1
Cập Nhật Lần Cuối 2023-06-23
Ngày Phát Hành 2020-03-07
Đánh Giá 3.52/5 Tổng số 81 Đánh Giá
Nhà Phát Triển Ryan Thaut
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://rthaut.github.io/YouTubePopoutPlayer/
URL Trang Trợ Giúp https://github.com/rthaut/YouTubePopoutPlayer/
Ngôn Ngữ Được Hỗ Trợ en,zh-CN,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_ExtensionName__",
    "description": "__MSG_ExtensionDescription__",
    "version": "4.4.1",
    "short_name": "__MSG_ExtensionShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "author": "Ryan Thaut",
    "homepage_url": "https:\/\/rthaut.github.io\/YouTubePopoutPlayer\/",
    "icons": {
        "16": "images\/icon-16.png",
        "19": "images\/icon-19.png",
        "24": "images\/icon-24.png",
        "32": "images\/icon-32.png",
        "38": "images\/icon-38.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "19": "images\/icon-19.png",
            "24": "images\/icon-24.png",
            "32": "images\/icon-32.png",
            "38": "images\/icon-38.png",
            "48": "images\/icon-48.png",
            "64": "images\/icon-64.png",
            "96": "images\/icon-96.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "__MSG_BrowserActionTitle__"
    },
    "commands": {
        "open-popout-auto-close-command": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "__MSG_OpenPopoutCommandDescription__"
        },
        "open-popout-force-close-command": {
            "description": "__MSG_OpenPopoutForceCloseCommandDescription__"
        },
        "open-popout-no-close-command": {
            "description": "__MSG_OpenPopoutNoCloseCommandDescription__"
        },
        "rotate-video-left": {
            "suggested_key": {
                "default": "Alt+Shift+A"
            },
            "description": "__MSG_RotateVideoLeftCommandDescription__"
        },
        "rotate-video-right": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "__MSG_RotateVideoRightCommandDescription__"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "styles\/content.css"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtube-nocookie.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "pages\/options.html?vendor=chrome",
        "open_in_tab": false
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.youtube-nocookie.com\/*",
        "contextMenus",
        "notifications",
        "storage",
        "webRequest",
        "webRequestBlocking"
    ],
    "optional_permissions": [
        "tabs"
    ],
    "minimum_chrome_version": "51.0"
}