PIPsy - PIP out your video player!
Easily pop out any video player into a PIP window.
PIPsy - PIP out your video player! क्या है?
PIPsy - PIP out your video player! Marius Kießling द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily pop out any video player into a PIP window."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PIPsy - PIP out your video player! एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Chrome 70 introduced the picture in picture (PIP) mode for HTML5 video players. This extension simply takes the functionality offered by Chrome and brings it to websites that don't support it directly. Using this extension you can use PIP on on e.g. these sites: - Netflix - Amazon Prime Video The extension is in an early stage right now. Please feel free to open bug reports in GitHub's issue tracker (https://github.com/mariuskiessling/pipsy). Disclaimer: This extension is not affiliated and/or endorsed by any of the sites above and in the screenshots.
एक्सटेंशन की मूल जानकारी
नाम | PIPsy - PIP out your video player! |
ID | eifkfjbbngmilpppefdcnocfpdlaipal |
आधिकारिक URL | https://chromewebstore.google.com/detail/pipsy-pip-out-your-video/eifkfjbbngmilpppefdcnocfpdlaipal |
विवरण | Easily pop out any video player into a PIP window. |
फ़ाइल का आकार | 13.89 KB |
स्थापना संख्या | 3,000 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2018-11-29 |
प्रकाशन तिथि | 2018-11-29 |
रेटिंग | 4.15/5 कुल 13 रेटिंग्स |
डेवलपर | Marius Kießling |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PIPsy - PIP out your video player!", "version": "1.0.2", "manifest_version": 2, "description": "Easily pop out any video player into a PIP window.", "homepage_url": "https:\/\/mariuskiessling.de", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "browser_action": { "default_icon": "icons\/icon_19.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.amazon.de\/*", "https:\/\/*.netflix.com\/*", "https:\/\/*.skygo.sky.de\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "src\/pipsy.js" ] } ] } |