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란 무엇입니까?

YouTube Music Player and Picture in Picture은(는) miguel.corbero에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites."입니다.

확장 프로그램 스크린샷

screenshot

YouTube Music Player and Picture in Picture 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 YouTube Music Player and Picture in Picture YouTube Music Player and Picture in Picture
ID fjjakcegmanppooiaipboapdchfffjmh
공식 URL https://chrome.google.com/webstore/detail/youtube-music-player-and/fjjakcegmanppooiaipboapdchfffjmh
설명 Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites.
파일 크기 41.91 KB
설치 횟수 2,678
현재 버전 2.0.7
최근 업데이트 2023-10-13
출시 날짜 2019-07-27
평점 4.26/5 총 31 개의 평점
개발자 miguel.corbero
이메일 [email protected]
확장 프로그램 웹 사이트 https://ytmusicplayerextension.com/
도움말 페이지 URL https://sites.google.com/view/crx/home
지원되는 언어 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'"
}