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.

¿Qué es YouTube Music Player and Picture in Picture?

YouTube Music Player and Picture in Picture es una extensión de Chrome desarrollada por miguel.corbero, y su función principal es "Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión YouTube Music Player and Picture in Picture

Descarga archivos de extensión YouTube Music Player and Picture in Picture en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre YouTube Music Player and Picture in Picture YouTube Music Player and Picture in Picture
ID fjjakcegmanppooiaipboapdchfffjmh
URL Oficial https://chrome.google.com/webstore/detail/youtube-music-player-and/fjjakcegmanppooiaipboapdchfffjmh
Descripción Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites.
Tamaño del Archivo 41.91 KB
Cantidad de Instalaciones 2,678
Versión Actual 2.0.7
Última Actualización 2023-10-13
Fecha de Publicación 2019-07-27
Calificación 4.26/5 Total de 31 Calificaciones
Desarrollador miguel.corbero
Correo electrónico [email protected]
Sitio Web de la Extensión https://ytmusicplayerextension.com/
URL de la Página de Ayuda https://sites.google.com/view/crx/home
Idiomas Soportados 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'"
}