YouTube Music Player and Picture in Picture

Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites.

YouTube Music Player and Picture in Picture là gì?

YouTube Music Player and Picture in Picture là một tiện ích mở rộng Chrome được phát triển bởi miguel.corbero, và tính năng chính của nó là "Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites.".

Ả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 YouTube Music Player and Picture in Picture

Tải xuống các tệp mở rộng YouTube Music Player and Picture in Picture 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

                        With YouTube media player, you no need to navigate to the page to browse contents. You can use primary commands: play, pause, stop, next, previous, seek the media content on interface of YouTube Media Player. 
Otherwise, you also press F9 to switch to the picture-in-picture mode to view video content (on all sites) while you can still do other jobs.

IF YOU WANT TO PLAY SOME FAVORITE SONGS, JUST MAKE A PLAYLIST (WITH/WITHOUT LOOP OR SHUFFLE). THE CONTROL CENTER COMBINES WITH THIS ACTION WILL BRING YOU A WONDERFUL USER EXPERIENCE.

Hope you enjoy it!                    

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

Tên YouTube Music Player and Picture in Picture YouTube Music Player and Picture in Picture
ID fjjakcegmanppooiaipboapdchfffjmh
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-music-player-and/fjjakcegmanppooiaipboapdchfffjmh
Mô tả Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites.
Kích Thước Tệp 41.91 KB
Số Lần Cài Đặt 2,678
Phiên Bản Hiện Tại 2.0.7
Cập Nhật Lần Cuối 2023-10-13
Ngày Phát Hành 2019-07-27
Đánh Giá 4.26/5 Tổng số 31 Đánh Giá
Nhà Phát Triển miguel.corbero
Email [email protected]
Trang Web Mở Rộng https://ytmusicplayerextension.com/
URL Trang Trợ Giúp https://sites.google.com/view/crx/home
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Music Player and Picture in Picture",
    "short_name": "YouTube Media Player",
    "description": "Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites.",
    "author": "HTCom",
    "version": "2.0.7",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "cookies",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "common.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "data\/page.js",
                "data\/controls.js",
                "data\/no_buffer.js",
                "data\/quality.js",
                "data\/next_track.js",
                "data\/css.js",
                "data\/pinp.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "data\/pinp.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        },
        "default_title": "Launch YouTube"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/plausible.ytmusicplayerextension.com; object-src 'self'"
}