Enhanced Floating Video Player (PIP)

A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!

Enhanced Floating Video Player (PIP) क्या है?

Enhanced Floating Video Player (PIP) Jean-Michel M. | twitch.tv/krowplex द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!"।

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

screenshot
screenshot
screenshot

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

crx प्रारूप में Enhanced Floating Video Player (PIP) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Picture-In-Picture is a Chromium feature, which allows to drag your video over other desktop windows, allowing you full flexibility and productivity.

Very helpful for people with one monitor, or if you need to do something while watching a tutorial, livestreams, movies, etc.


### How To ###

There are 2 ways:

First way: On YouTube, Netflix and Twitch, there will be a "PIP" button in the media player bar when hovering on it. This button will allow you to watch content on top of other windows.

Second way: Simply click on the extension icon at the top right of your browser. It will by default select the first available video on your current page.


### The Future ###

We plan on integrating the PIP button for many other sites. For now, sites with the PIP buttons are (but not limited to, if you use the extension icon), YouTube, Netflix and Twitch. The extension and user interface is subject to change, however, not the functionalities.


### Troubleshooting ###

Might not work on Chrome 70 versions or lower. Try updating your browser.

If you still have trouble, please submit your problem here:
https://github.com/jeanmichelmorin/Floating-Video-Player-Youtube-PIP/issues                    

एक्सटेंशन की मूल जानकारी

नाम Enhanced Floating Video Player (PIP) Enhanced Floating Video Player (PIP)
ID oaihjcmhhokpahibakljjfkgbhghiffd
आधिकारिक URL https://chromewebstore.google.com/detail/enhanced-floating-video-p/oaihjcmhhokpahibakljjfkgbhghiffd
विवरण A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!
फ़ाइल का आकार 22.68 KB
स्थापना संख्या 2,197
वर्तमान संस्करण 2.0.2
अंतिम अपडेट 2021-07-19
प्रकाशन तिथि 2021-07-14
रेटिंग 3.92/5 कुल 12 रेटिंग्स
डेवलपर Jean-Michel M. | twitch.tv/krowplex
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jeanmichelmorin/Floating-Video-Player-Youtube-PIP
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enhanced Floating Video Player (PIP)",
    "version": "2.0.2",
    "manifest_version": 2,
    "description": "A simple floating video player using Picture-In-Picture with direct integrations to YouTube, Twitch, Netflix, and more!",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/pip_logic.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/sites_integration\/youtube.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "js\/sites_integration\/netflix.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "js\/sites_integration\/twitch.js"
            ]
        }
    ],
    "icons": {
        "128": "Icon.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "js\/pip_logic.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "browser_action": []
}