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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control YouTube Media Player without focusing on the YouTube page and Add the PinP mode to all sites."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Music Player and Picture in Picture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}