Pop-up Videos

Open all videos in a tab as pop-up windows.

Pop-up Videos là gì?

Pop-up Videos là một tiện ích mở rộng Chrome được phát triển bởi jip.de.beer, và tính năng chính của nó là "Open all videos in a tab as pop-up windows.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pop-up Videos

Tải xuống các tệp mở rộng Pop-up Videos 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

                        Opens all the videos in a tab as pop-up windows, and keeps opening windows when new videos appear. You can drag the windows around to put them on different monitors, for example. It also comes in handy when you want to capture (multiple) videos from a web page to use in other programs, like OBS Studio.

Also check out my "Pop-out Jitsi Meet" extension, which does what this extension does (+ more) and is made specifically for Jitsi Meet. https://chrome.google.com/webstore/detail/boklbbjieahngbnhdmlhldjjibdnnbcn/

Use case scenario:
Open a Jitsi Meet video conference on: https://meet.jit.si/.
Click the black extension icon in the browser toolbar (top right), and click enable.
The tab will open in its own window, to ensure videos continue to play even in the background.
Pop-ups will open for all videos in the conference page.
You can move some of the videos to a different monitor and make them full screen, and close the others you don't need.
Use OBS Studio to grab the full screen video, and use it in your live stream.
During the live stream, you can still use the Jitsi Meet interface as usual without it appearing in the window capture from OBS Studio.

Remarks:
- If you want to full screen the pop-up window, do it on another monitor. Not on the monitor where the 'source' tab is displayed. Otherwise the video may stop playing.
- Once enabled, the source tab needs to remain the only tab in its window. You can't drag any tabs into the window, and all new tabs made in that window will be opened in new windows as well. This behaviour goes back to normal when you disable the extension for this tab.                    

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

Tên Pop-up Videos Pop-up Videos
ID babkffilagdlhoeopgfnhfnomhicjodj
URL Chính Thức https://chromewebstore.google.com/detail/pop-up-videos/babkffilagdlhoeopgfnhfnomhicjodj
Mô tả Open all videos in a tab as pop-up windows.
Kích Thước Tệp 15.44 KB
Số Lần Cài Đặt 961
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2021-01-16
Ngày Phát Hành 2020-04-30
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển jip.de.beer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Jip-Hop/pop-up-videos
URL Trang Trợ Giúp https://github.com/Jip-Hop/pop-up-videos/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pop-up Videos",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "Open all videos in a tab as pop-up windows.",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png",
        "980": "icons\/icon980.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon48.png",
        "default_title": "Pop-up Videos",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "",
        "contentSettings",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "all_frames": true,
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}