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) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Enhanced Floating Video Player (PIP)

Λήψη αρχείων επέκτασης Enhanced Floating Video Player (PIP) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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": []
}